Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,8 +4,8 @@ FROM python:3.10
|
|
4 |
WORKDIR /ASF
|
5 |
|
6 |
# Copy the requirements file and install dependencies
|
7 |
-
COPY ./requirements.txt /
|
8 |
-
RUN pip install --no-cache-dir --upgrade -r /
|
9 |
|
10 |
# Create a user and switch to it
|
11 |
RUN useradd user
|
|
|
4 |
WORKDIR /ASF
|
5 |
|
6 |
# Copy the requirements file and install dependencies
|
7 |
+
COPY ./requirements.txt /asf-app/requirements.txt
|
8 |
+
RUN pip install --no-cache-dir --upgrade -r /asf-app/requirements.txt
|
9 |
|
10 |
# Create a user and switch to it
|
11 |
RUN useradd user
|