Refactor Dockerfile to remove unnecessary permissions
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -13,7 +13,7 @@ ENV HOME=/data \
|
|
13 |
PATH=/home/user/.local/bin:$PATH
|
14 |
|
15 |
# Change permissions for to read/write/execute
|
16 |
-
RUN mkdir
|
17 |
RUN chmod 777 $HOME/app
|
18 |
|
19 |
# Set the working directory to the user's home directory
|
|
|
13 |
PATH=/home/user/.local/bin:$PATH
|
14 |
|
15 |
# Change permissions for to read/write/execute
|
16 |
+
RUN mkdir $HOME/app
|
17 |
RUN chmod 777 $HOME/app
|
18 |
|
19 |
# Set the working directory to the user's home directory
|