fix : Resloving the timeout problem for long sequences
Browse files- Dockerfile +1 -1
- testapp.py → tests/testapp.py +0 -0
Dockerfile
CHANGED
@@ -31,4 +31,4 @@ COPY . .
|
|
31 |
RUN mkdir -p /code/static/uploads && chmod -R 777 /code/static/uploads
|
32 |
|
33 |
# Command to run your application
|
34 |
-
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]
|
|
|
31 |
RUN mkdir -p /code/static/uploads && chmod -R 777 /code/static/uploads
|
32 |
|
33 |
# Command to run your application
|
34 |
+
CMD ["gunicorn", "--timeout", "300", "-b", "0.0.0.0:7860", "app:app"]
|
testapp.py → tests/testapp.py
RENAMED
File without changes
|