diff --git a/Dockerfile b/Dockerfile index 5cf2a07..1986023 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,5 +40,5 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ # Expose port EXPOSE 8000 -# Run gunicorn with access logging -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"]