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