Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
|
|
|
|
|
|
| 3 |
# Create a user with UID 1000
|
| 4 |
RUN useradd -m -u 1000 user
|
| 5 |
|
| 6 |
-
RUN pwd && ls -l
|
| 7 |
-
|
| 8 |
# Set the working directory and user environment variables
|
| 9 |
ENV HOME=/home/user \
|
| 10 |
PATH=/home/user/.local/bin:$PATH
|
|
|
|
| 1 |
FROM python:3.9
|
| 2 |
|
| 3 |
+
RUN pwd && ls -l
|
| 4 |
+
|
| 5 |
# Create a user with UID 1000
|
| 6 |
RUN useradd -m -u 1000 user
|
| 7 |
|
|
|
|
|
|
|
| 8 |
# Set the working directory and user environment variables
|
| 9 |
ENV HOME=/home/user \
|
| 10 |
PATH=/home/user/.local/bin:$PATH
|