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.
22 lines
504 B
22 lines
504 B
3 years ago
|
FROM hub.swarmlab.io:5480/xelatex-base: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 \
|
||
|
/
|
||
|
|
||
|
COPY fonts-extra/ /usr/share/fonts
|
||
|
COPY cls/ /usr/local/texlive/texmf-local/tex/latex/local
|
||
|
RUN /setup.sh
|
||
|
|
||
|
WORKDIR /home
|
||
|
VOLUME ["/home"]
|
||
|
|
||
|
CMD ["-f","/dev/null"]
|