Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -14,7 +14,7 @@ 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 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 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
|