dockerFullLatexEnvironment/latest/Dockerfile

15 lines
254 B
Docker
Raw Normal View History

FROM luki42/latex-full:static
MAINTAINER luki42
# set up packages
2020-04-21 08:01:35 +00:00
RUN tlmgr update --self && \
tlmgr update --all && \
rm -rf /var/lib/apt/lists/* \
/tmp/* \
/var/tmp/*
# Expose /home as workin dir
WORKDIR /home
VOLUME ["/home"]