A template for a thesis or assignments LaTeX!
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.

24 lines
563 B

3 years ago
FROM hub.swarmlab.io:5480/xelatex-base:latest
ARG build_dir
3 years ago
LABEL \
org.opencontainers.image.title="Docker Image of TeXLive" \
org.opencontainers.image.authors="Swarmlab.io <rootapostolos@swarmlab.io>"
3 years ago
ENV PATH=/usr/local/texlive/bin/x86_64-linuxmusl:/usr/local/texlive/2020/bin/x86_64-linuxmusl:${PATH}
COPY \
setup.sh \
${build_dir}/extrapackages \
3 years ago
/
COPY ${build_dir}/fonts-extra/ /usr/share/fonts
COPY ${build_dir}/cls/ /usr/local/texlive/texmf-local/tex/latex/local
RUN /setup.sh
3 years ago
WORKDIR /home
VOLUME ["/home"]
3 years ago
CMD ["tail","-f","/dev/null"]