Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -15,4 +15,4 @@ RUN pip install --no-cache-dir gunicorn
|
|
15 |
EXPOSE 5000
|
16 |
|
17 |
# 运行应用程序
|
18 |
-
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
|
|
|
15 |
EXPOSE 5000
|
16 |
|
17 |
# 运行应用程序
|
18 |
+
CMD ["gunicorn", "-b", "0.0.0.0:5000","--timeout", "300", "app:app"]
|