Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -47,4 +47,5 @@ COPY --chown=user . /app
|
|
47 |
EXPOSE 7860
|
48 |
|
49 |
# Start the app using waitress
|
50 |
-
CMD ["
|
|
|
|
47 |
EXPOSE 7860
|
48 |
|
49 |
# Start the app using waitress
|
50 |
+
CMD ["python", "-m", "waitress", "--listen=0.0.0.0:7860", "app:app"]
|
51 |
+
# python -m waitress --listen=0.0.0.0:7860 app:app
|