Update huggingface_docker/Dockerfile
Browse files
huggingface_docker/Dockerfile
CHANGED
|
@@ -8,10 +8,10 @@ WORKDIR /app
|
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
# Install Python dependencies
|
| 11 |
-
RUN pip install -r
|
| 12 |
|
| 13 |
# Expose the port Flask will run on (required by Hugging Face Spaces)
|
| 14 |
EXPOSE 5000
|
| 15 |
|
| 16 |
# Run the Flask app
|
| 17 |
-
CMD ["python", "
|
|
|
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
# Install Python dependencies
|
| 11 |
+
RUN pip install -r requirements.txt
|
| 12 |
|
| 13 |
# Expose the port Flask will run on (required by Hugging Face Spaces)
|
| 14 |
EXPOSE 5000
|
| 15 |
|
| 16 |
# Run the Flask app
|
| 17 |
+
CMD ["python", "app.py"]
|