Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -23,5 +23,5 @@ RUN mkdir -p /app/temp && chmod 777 /app/temp
|
|
23 |
# Make port 7860 available to the world outside this container
|
24 |
EXPOSE 7860
|
25 |
|
26 |
-
#
|
27 |
-
CMD ["
|
|
|
23 |
# Make port 7860 available to the world outside this container
|
24 |
EXPOSE 7860
|
25 |
|
26 |
+
# Start the app using Gunicorn
|
27 |
+
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]
|