Spaces:
Sleeping
Sleeping
Docker
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -24,7 +24,7 @@ USER nobody
|
|
24 |
RUN pip install --no-cache-dir -r requirements.txt
|
25 |
|
26 |
# Make port 7860 available to the world outside this container
|
27 |
-
EXPOSE
|
28 |
|
29 |
# Command to run the application
|
30 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:
|
|
|
24 |
RUN pip install --no-cache-dir -r requirements.txt
|
25 |
|
26 |
# Make port 7860 available to the world outside this container
|
27 |
+
EXPOSE 9000
|
28 |
|
29 |
# Command to run the application
|
30 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:9000", "app:app"]
|