Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 15 |
COPY requirements_hf.txt .
|
| 16 |
|
| 17 |
# Install Python dependencies
|
| 18 |
-
RUN pip install --no-cache-dir -r
|
| 19 |
|
| 20 |
# Copy application files
|
| 21 |
COPY . .
|
|
@@ -32,4 +32,4 @@ ENV GRADIO_SERVER_PORT=7860
|
|
| 32 |
EXPOSE 7860
|
| 33 |
|
| 34 |
# Run the application
|
| 35 |
-
CMD ["python", "
|
|
|
|
| 15 |
COPY requirements_hf.txt .
|
| 16 |
|
| 17 |
# Install Python dependencies
|
| 18 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 19 |
|
| 20 |
# Copy application files
|
| 21 |
COPY . .
|
|
|
|
| 32 |
EXPOSE 7860
|
| 33 |
|
| 34 |
# Run the application
|
| 35 |
+
CMD ["python", "app.py"]
|