5 Commits
1.0.0 ... 1.3.0

Author SHA1 Message Date
1669151c53 switch to bullseye 2021-12-17 09:51:44 +01:00
1f1ffbbf8e for test 2021-03-08 19:11:12 +01:00
c852534513 add doxygen 2021-01-26 17:40:34 +01:00
b1a51784b9 add lastpage, url fix 2020-09-28 16:15:56 +02:00
85a7b36511 add lastpage 2020-09-28 16:02:58 +02:00
2 changed files with 13 additions and 4 deletions

View File

@ -1,24 +1,31 @@
FROM registry.hottis.de/dockerized/base-build-env:1.0.0 FROM registry.hottis.de/dockerized/base-build-env:1.5.2-bullseye
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>" LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName="registry.hottis.de/dockerized/build-env-latex" LABEL ImageName="registry.hottis.de/dockerized/build-env-latex"
LABEL AlternativeImageName="wollud1969/build-env-latex" LABEL AlternativeImageName="wollud1969/build-env-latex"
ARG ACROTEX_URL="http://mirrors.ctan.org/macros/latex/contrib/acrotex.zip" ARG ACROTEX_URL="http://mirrors.ctan.org/macros/latex/contrib/acrotex.zip"
ARG LASTPAGE_URL="http://mirrors.ctan.org/macros/latex/contrib/lastpage.zip"
ENV TEXINPUTS "~/texmf//:" ENV TEXINPUTS "~/texmf//:"
RUN \ RUN \
apt-get update && \ apt update && \
apt-get install -y texlive-full && \ apt install -y texlive-full && \
apt install -y doxygen && \
apt install -y doxygen-latex && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
cd /tmp && \ cd /tmp && \
wget $ACROTEX_URL && \ wget $ACROTEX_URL && \
wget $LASTPAGE_URL && \
tlmgr init-usertree && \ tlmgr init-usertree && \
unzip acrotex.zip && \ unzip acrotex.zip && \
unzip lastpage.zip && \
mv acrotex ~/texmf && \ mv acrotex ~/texmf && \
mv lastpage ~/texmf && \
cd ~/texmf/acrotex && \ cd ~/texmf/acrotex && \
latex acrotex.ins && \ latex acrotex.ins && \
cd ~/texmf/lastpage && \
tex lastpage.dtx && \
cd ~ cd ~

View File

@ -5,5 +5,7 @@ Based on base-build-env
Contains additionally: Contains additionally:
* texlive * texlive
* acrotex * acrotex
* doxygen