Upload folder using huggingface_hub
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -13,4 +13,4 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 13 |
EXPOSE 7860
|
| 14 |
|
| 15 |
# Start Flask API with Gunicorn (4 workers, bind to 7860)
|
| 16 |
-
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860",
|
|
|
|
| 13 |
EXPOSE 7860
|
| 14 |
|
| 15 |
# Start Flask API with Gunicorn (4 workers, bind to 7860)
|
| 16 |
+
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860","app:sales_prediction_api"]
|