Spaces:
Sleeping
Sleeping
change port
Browse files- DockerFile +2 -2
DockerFile
CHANGED
@@ -18,7 +18,7 @@ ENV FLASK_APP=run.py
|
|
18 |
ENV FLASK_ENV=production
|
19 |
|
20 |
# Expose the port the app runs on
|
21 |
-
EXPOSE
|
22 |
|
23 |
# Define the command to run the application
|
24 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
18 |
ENV FLASK_ENV=production
|
19 |
|
20 |
# Expose the port the app runs on
|
21 |
+
EXPOSE 7860
|
22 |
|
23 |
# Define the command to run the application
|
24 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "run:app"]
|