Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -8,8 +8,8 @@ FROM python:3.11.5-bookworm
|
|
8 |
WORKDIR /app
|
9 |
|
10 |
# Install requirements.txt
|
11 |
-
COPY requirements.txt
|
12 |
-
RUN pip install --no-cache-dir --upgrade -r
|
13 |
|
14 |
# Copy the current directory contents into the container at .
|
15 |
COPY . .
|
|
|
8 |
WORKDIR /app
|
9 |
|
10 |
# Install requirements.txt
|
11 |
+
COPY requirements.txt /app
|
12 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
13 |
|
14 |
# Copy the current directory contents into the container at .
|
15 |
COPY . .
|