Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -13,4 +13,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
| 13 |
# - '-w 4' : Uses 4 worker processes to handle requests.
|
| 14 |
# - '-b 0.0.0.0:7860': Binds the Flask app to the specified host and port.
|
| 15 |
# - 'app:sales_prediction_api': Specifies the entry point of the Flask app.
|
| 16 |
-
CMD ["gunicorn", "w", "4", "-b", "0.0.0.0:7860" "app:sales_prediction_api"]
|
|
|
|
| 13 |
# - '-w 4' : Uses 4 worker processes to handle requests.
|
| 14 |
# - '-b 0.0.0.0:7860': Binds the Flask app to the specified host and port.
|
| 15 |
# - 'app:sales_prediction_api': Specifies the entry point of the Flask app.
|
| 16 |
+
CMD ["gunicorn", "w", "4", "-b", "0.0.0.0:7860", "app:sales_prediction_api"]
|