diff --git a/Dockerfile b/Dockerfile index 80dedeaa6489341ac79f63a2a10cb7b667e5d828..ce22f4979290a90429dd3818ef5987efce7be419 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,4 +34,14 @@ RUN chown -R ark:teklia /logs # Run with Daphne EXPOSE 80 -CMD ["daphne", "--verbosity=1", "--bind=0.0.0.0", "--port=80", "arkindex.project.asgi:application"] +CMD [ \ + "daphne", \ + "--http-timeout=30", \ + "--websocket_connect_timeout=10", \ + "--websocket_timeout=120", \ + "--ping-timeout=120", \ + "--application-close-timeout=3", \ + "--verbosity=1", \ + "--bind=0.0.0.0", \ + "--port=80", \ + "arkindex.project.asgi:application"]