You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
635 B
30 lines
635 B
FROM alpine:latest
|
|
|
|
LABEL \
|
|
org.opencontainers.image.title="Docker Image of TeXLive" \
|
|
org.opencontainers.image.authors="Swarmlab.io <rootapostolos@swarmlab.io>"
|
|
|
|
ENV PATH=/usr/local/texlive/bin/x86_64-linuxmusl:/usr/local/texlive/2020/bin/x86_64-linuxmusl:${PATH}
|
|
|
|
COPY \
|
|
setup.sh \
|
|
extrapackages \
|
|
texlive.profile \
|
|
texlive_pgp_keys.asc \
|
|
/
|
|
|
|
COPY fonts-extra/ /usr/share/fonts
|
|
COPY MastersDoctoralThesis.cls /usr/local/texlive/texmf-local/tex/latex/local/MastersDoctoralThesis.cls
|
|
COPY \
|
|
latex-clean \
|
|
latex-pdf \
|
|
/usr/local/bin/
|
|
|
|
RUN /setup.sh
|
|
|
|
|
|
|
|
WORKDIR /home
|
|
VOLUME ["/home"]
|
|
|
|
CMD ["tail","-f","/dev/null"]
|
|
|