Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -5,8 +5,8 @@ FROM python:3.9-slim
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Copy the requirements file and install dependencies first to leverage Docker cache
|
| 8 |
-
COPY
|
| 9 |
-
RUN pip install --no-cache-dir -r
|
| 10 |
|
| 11 |
# Copy the rest of the application files
|
| 12 |
COPY . .
|
|
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Copy the requirements file and install dependencies first to leverage Docker cache
|
| 8 |
+
COPY requirements.txt .
|
| 9 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
|
| 11 |
# Copy the rest of the application files
|
| 12 |
COPY . .
|