Spaces:
Sleeping
Sleeping
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -29,5 +29,5 @@ COPY --chown=user . .
|
|
| 29 |
# Expose port
|
| 30 |
EXPOSE 7860
|
| 31 |
|
| 32 |
-
# Run the application
|
| 33 |
-
CMD ["
|
|
|
|
| 29 |
# Expose port
|
| 30 |
EXPOSE 7860
|
| 31 |
|
| 32 |
+
# Run the application with gunicorn
|
| 33 |
+
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]
|