Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -16,7 +16,10 @@ COPY --chown=user . $HOME/app
|
|
16 |
RUN xargs apt-get install < ./paquetes.txt -y
|
17 |
RUN wget https://raw.githubusercontent.com/blang/latex-docker/master/latexdockercmd.sh
|
18 |
RUN chmod +x latexdockercmd.sh
|
|
|
|
|
19 |
|
|
|
20 |
# Switch to the "user" user
|
21 |
USER user
|
22 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
|
|
16 |
RUN xargs apt-get install < ./paquetes.txt -y
|
17 |
RUN wget https://raw.githubusercontent.com/blang/latex-docker/master/latexdockercmd.sh
|
18 |
RUN chmod +x latexdockercmd.sh
|
19 |
+
FROM blang/latex:ctanbasic
|
20 |
+
MAINTAINER Benedikt Lang <[email protected]>
|
21 |
|
22 |
+
RUN tlmgr install scheme-full
|
23 |
# Switch to the "user" user
|
24 |
USER user
|
25 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|