We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9353a8 commit 68efef7Copy full SHA for 68efef7
Dockerfile
@@ -40,5 +40,5 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
40
# Expose port
41
EXPOSE 8000
42
43
-# Run gunicorn with access logging
44
-CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "3", "--timeout", "120", "--keep-alive", "5", "--max-requests", "1000", "--access-logfile", "-", "--access-logformat", "%(h)s %(l)s %(u)s %(t)s \"%(r)s\" %(s)s %(b)s \"%(f)s\" \"%(a)s\" worker=%(p)s", "temple_web.wsgi:application"]
+# Run gunicorn
+CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "3", "--timeout", "120", "--keep-alive", "5", "--max-requests", "1000", "--chdir", "src", "temple_web.wsgi:application"]
0 commit comments