Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -10,7 +10,7 @@ ENV HOME=/home/user \
|
|
| 10 |
WORKDIR $HOME/app
|
| 11 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 12 |
COPY --chown=user . $HOME/app
|
| 13 |
-
RUN chmod 777 -R
|
| 14 |
RUN xargs apt-get install < ./paquetes.txt -y
|
| 15 |
RUN apt-get update -q \
|
| 16 |
&& apt-get install -qy build-essential wget libfontconfig1 \
|
|
|
|
| 10 |
WORKDIR $HOME/app
|
| 11 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 12 |
COPY --chown=user . $HOME/app
|
| 13 |
+
RUN chmod 777 -R $HOME/app
|
| 14 |
RUN xargs apt-get install < ./paquetes.txt -y
|
| 15 |
RUN apt-get update -q \
|
| 16 |
&& apt-get install -qy build-essential wget libfontconfig1 \
|