YoBatM commited on
Commit
b607849
·
verified ·
1 Parent(s): e39d30d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 sudo apt-get install texlive-full poppler-utils
 
 
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