Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -4,9 +4,10 @@ FROM python:3.9
|
|
4 |
RUN useradd -m -u 1000 user
|
5 |
|
6 |
# Set the working directory and user environment variables
|
7 |
-
ENV HOME=/
|
8 |
PATH=/bin:$PATH
|
9 |
|
|
|
10 |
# Switch to the user's home directory
|
11 |
WORKDIR $HOME
|
12 |
|
|
|
4 |
RUN useradd -m -u 1000 user
|
5 |
|
6 |
# Set the working directory and user environment variables
|
7 |
+
ENV HOME=/app \
|
8 |
PATH=/bin:$PATH
|
9 |
|
10 |
+
|
11 |
# Switch to the user's home directory
|
12 |
WORKDIR $HOME
|
13 |
|