2020-06-08 16:04:50 +00:00
|
|
|
FROM debian:buster
|
2019-02-16 23:21:02 +01:00
|
|
|
|
2019-03-27 14:20:40 +00:00
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
2020-06-10 02:25:31 +02:00
|
|
|
LABEL ImageName="registry.hottis.de/dockerized/base-build-env"
|
2020-06-08 16:04:50 +00:00
|
|
|
LABEL AlternativeImageName="wollud1969/base-build-env"
|
2020-03-17 14:56:00 +00:00
|
|
|
|
2020-08-26 19:00:22 +02:00
|
|
|
ARG RELEASETOOL_URL="https://home.hottis.de/gitlab/wolutator/gitlabreleaseuploader/uploads/f840b97a0eb64d1de2a6d6d1d4d1529e/GitlabReleaseTool.zip"
|
2020-09-18 16:29:59 +02:00
|
|
|
ARG ACROTEX_URL="http://mirrors.ctan.org/macros/latex/contrib/acrotex.zip"
|
2019-02-16 23:21:02 +01:00
|
|
|
|
2020-09-23 16:53:33 +02:00
|
|
|
ENV TEXINPUTS "~/texmf//:"
|
|
|
|
|
2019-02-16 23:21:02 +01:00
|
|
|
RUN \
|
|
|
|
apt-get update && \
|
|
|
|
apt-get install -y make && \
|
|
|
|
apt-get install -y openssh-client && \
|
|
|
|
apt-get install -y git && \
|
2019-02-21 15:35:18 +00:00
|
|
|
apt-get install -y python && \
|
2019-05-07 15:55:53 +00:00
|
|
|
apt-get install -y python-requests && \
|
2019-05-30 14:47:08 +02:00
|
|
|
apt-get install -y python-pycodestyle && \
|
2020-02-26 15:39:07 +00:00
|
|
|
apt-get install -y python-yaml && \
|
2019-05-17 15:12:01 +02:00
|
|
|
apt-get install -y gpg && \
|
|
|
|
apt-get install -y apt-transport-https && \
|
|
|
|
apt-get install -y wget && \
|
2019-04-30 13:23:56 +00:00
|
|
|
apt-get install -y curl && \
|
2019-07-10 15:04:59 +00:00
|
|
|
apt-get install -y unzip && \
|
2019-07-10 15:50:46 +00:00
|
|
|
apt-get install -y zip && \
|
2020-03-17 14:54:07 +00:00
|
|
|
apt-get install -y vim.tiny && \
|
2020-09-18 13:34:31 +02:00
|
|
|
apt-get install -y texlive-full && \
|
2020-09-15 11:57:36 +02:00
|
|
|
apt-get install -y p7zip-full && \
|
2019-05-07 15:55:53 +00:00
|
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
|
|
cd /tmp && \
|
2020-03-17 14:54:07 +00:00
|
|
|
wget $RELEASETOOL_URL && \
|
2019-07-16 15:42:13 +02:00
|
|
|
unzip GitlabReleaseTool.zip && \
|
2019-05-30 15:15:16 +02:00
|
|
|
chmod 755 gitlabreleaseuploader.py && \
|
2019-07-16 15:42:13 +02:00
|
|
|
chmod 755 deleterelease.py && \
|
2020-08-26 19:00:22 +02:00
|
|
|
chmod 755 checksemver.py && \
|
2019-07-16 15:42:13 +02:00
|
|
|
mv gitlabreleaseuploader.py /usr/bin && \
|
2020-08-26 19:06:06 +02:00
|
|
|
mv deleterelease.py /usr/bin && \
|
2020-09-18 16:29:59 +02:00
|
|
|
mv checksemver.py /usr/bin && \
|
|
|
|
wget $ACROTEX_URL && \
|
|
|
|
tlmgr init-usertree && \
|
|
|
|
unzip acrotex.zip && \
|
2020-09-23 16:45:27 +02:00
|
|
|
mv acrotex ~/texmf && \
|
|
|
|
pushd ~/texmf/acrotex && \
|
|
|
|
latex acrotex.ins && \
|
|
|
|
popd
|
|
|
|
|
2019-07-16 15:42:13 +02:00
|
|
|
|
2019-05-07 15:55:53 +00:00
|
|
|
|
2019-02-16 23:21:02 +01:00
|
|
|
|