Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
c852534513 | |||
b1a51784b9
|
|||
85a7b36511
|
15
Dockerfile
15
Dockerfile
@ -1,24 +1,31 @@
|
||||
FROM registry.hottis.de/dockerized/base-build-env:1.0.0
|
||||
FROM registry.hottis.de/dockerized/base-build-env:1.2.0
|
||||
|
||||
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
||||
LABEL ImageName="registry.hottis.de/dockerized/build-env-latex"
|
||||
LABEL AlternativeImageName="wollud1969/build-env-latex"
|
||||
|
||||
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//:"
|
||||
|
||||
RUN \
|
||||
apt-get update && \
|
||||
apt-get install -y texlive-full && \
|
||||
apt update && \
|
||||
apt install -y texlive-full && \
|
||||
apt install -y doxygen && \
|
||||
apt install -y doxygen-latex && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
cd /tmp && \
|
||||
wget $ACROTEX_URL && \
|
||||
wget $LASTPAGE_URL && \
|
||||
tlmgr init-usertree && \
|
||||
unzip acrotex.zip && \
|
||||
unzip lastpage.zip && \
|
||||
mv acrotex ~/texmf && \
|
||||
mv lastpage ~/texmf && \
|
||||
cd ~/texmf/acrotex && \
|
||||
latex acrotex.ins && \
|
||||
cd ~/texmf/lastpage && \
|
||||
tex lastpage.dtx && \
|
||||
cd ~
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user