Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -19,6 +19,7 @@ USER user
|
|
19 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
20 |
RUN pip install --no-cache-dir --upgrade pip
|
21 |
RUN pip install -r requirements.txt
|
|
|
22 |
RUN wget https://raw.githubusercontent.com/blang/latex-docker/master/latexdockercmd.sh
|
23 |
RUN chmod +x latexdockercmd.sh
|
24 |
|
|
|
19 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
20 |
RUN pip install --no-cache-dir --upgrade pip
|
21 |
RUN pip install -r requirements.txt
|
22 |
+
RUN chmod 777 .
|
23 |
RUN wget https://raw.githubusercontent.com/blang/latex-docker/master/latexdockercmd.sh
|
24 |
RUN chmod +x latexdockercmd.sh
|
25 |
|