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