Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -14,7 +14,9 @@ WORKDIR $HOME/app
|
|
14 |
|
15 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
16 |
RUN pip install --no-cache-dir --upgrade pip
|
17 |
-
RUN
|
|
|
|
|
18 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
19 |
COPY --chown=user . $HOME/app
|
20 |
EXPOSE 7080
|
|
|
14 |
|
15 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
16 |
RUN pip install --no-cache-dir --upgrade pip
|
17 |
+
RUN xargs apt-get install < paquetes.txt -y
|
18 |
+
|
19 |
+
#RUN sudo apt-get install texlive-full poppler-utils
|
20 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
21 |
COPY --chown=user . $HOME/app
|
22 |
EXPOSE 7080
|