Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ FROM python:3.10
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Copy the requirements file first (for caching optimization)
|
8 |
-
COPY
|
9 |
|
10 |
# Install dependencies
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
5 |
WORKDIR /app
|
6 |
|
7 |
# Copy the requirements file first (for caching optimization)
|
8 |
+
COPY requirements.txt /app/requirements.txt
|
9 |
|
10 |
# Install dependencies
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|