13 lines
181 B
Docker
13 lines
181 B
Docker
|
|
||
|
FROM luki42/latex-full:static
|
||
|
MAINTAINER luki42
|
||
|
|
||
|
# set up packages
|
||
|
RUN tlmgr update --self &&\
|
||
|
tlmgr update --all
|
||
|
|
||
|
|
||
|
# Expose /home as workin dir
|
||
|
WORKDIR /home
|
||
|
VOLUME ["/home"]
|