Update Dockerfile to fix PATH issue
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -10,7 +10,7 @@ USER user
|
|
10 |
|
11 |
# Set home to the user's home directory
|
12 |
ENV HOME=/data \
|
13 |
-
PATH=/
|
14 |
|
15 |
# Change permissions for to read/write/execute
|
16 |
# RUN mkdir $HOME/app
|
|
|
10 |
|
11 |
# Set home to the user's home directory
|
12 |
ENV HOME=/data \
|
13 |
+
PATH=/home/user/.local/bin:$PATH
|
14 |
|
15 |
# Change permissions for to read/write/execute
|
16 |
# RUN mkdir $HOME/app
|