Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -27,4 +27,4 @@ WORKDIR $HOME/app
|
|
27 |
COPY --chown=user . $HOME/app
|
28 |
|
29 |
# Set the command to run the Flask app with Gunicorn
|
30 |
-
CMD ["gunicorn","0.0.0.0:7860", "main:app"]
|
|
|
27 |
COPY --chown=user . $HOME/app
|
28 |
|
29 |
# Set the command to run the Flask app with Gunicorn
|
30 |
+
CMD ["gunicorn","-b","0.0.0.0:7860", "main:app"]
|