2 Commits
1.0.0 ... 1.1.0

Author SHA1 Message Date
b1a51784b9 add lastpage, url fix 2020-09-28 16:15:56 +02:00
85a7b36511 add lastpage 2020-09-28 16:02:58 +02:00

View File

@ -5,7 +5,7 @@ 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 \
@ -14,11 +14,16 @@ RUN \
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 ~