dockerFullLatexEnvironment/latest/Dockerfile

12 lines
181 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 && \
2020-04-21 19:02:36 +00:00
tlmgr update --all
# Expose /home as workin dir
WORKDIR /home
VOLUME ["/home"]