Skip to content

Commit 47f4f44

Browse files
committed
Remove Gunicorn timeout from container
1 parent 1484d72 commit 47f4f44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ WORKDIR /apps
44
COPY ./discovery ./discovery
55
COPY ./requirements.txt ./requirements.txt
66
RUN pip install -r requirements.txt
7-
ENTRYPOINT [ "sh", "-c", "gunicorn -w 4 'discovery.app:create_app()' --bind=0.0.0.0:${PORT}" ]
7+
ENTRYPOINT [ "sh", "-c", "gunicorn --workers 4 --timeout 0 --bind=0.0.0.0:${PORT} 'discovery.app:create_app()'" ]

0 commit comments

Comments
 (0)