Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
b1a51784b9
|
|||
85a7b36511
|
@ -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 ~
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user