Spaces:
Sleeping
Sleeping
Commit
·
7b8fd64
1
Parent(s):
5f4973d
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -7,8 +7,8 @@ WORKDIR /app
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
-
# Define the user ID in the environment variable USER_ID
|
11 |
-
ARG USER_ID
|
12 |
ENV USER_ID=$USER_ID
|
13 |
|
14 |
# Check if the user already exists
|
|
|
7 |
# Copy the current directory contents into the container at /app
|
8 |
COPY . /app
|
9 |
|
10 |
+
# Define the user ID in the environment variable USER_ID with a default value
|
11 |
+
ARG USER_ID=1000
|
12 |
ENV USER_ID=$USER_ID
|
13 |
|
14 |
# Check if the user already exists
|