Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
# Set up a new user named "user" with user ID 1000
|
10 |
-
RUN useradd -m -u
|
11 |
# Switch to the "user" user
|
12 |
USER user
|
13 |
# Set home to the user's home directory
|
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
9 |
# Set up a new user named "user" with user ID 1000
|
10 |
+
RUN useradd -m -u 1000 user
|
11 |
# Switch to the "user" user
|
12 |
USER user
|
13 |
# Set home to the user's home directory
|