Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change worker class to eventlet and pip install it #1578

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfiles/backend.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ RUN npm run css
#########################
FROM base as production

RUN pip install gunicorn
RUN pip install gunicorn eventlet

# Add parameters for gunicorn
ENV GUNICORN_CMD_ARGS "--bind=0.0.0.0:5000 --workers=2 --thread=4 --worker-class=gthread --forwarded-allow-ips='*' --access-logfile -"
ENV GUNICORN_CMD_ARGS "--bind=0.0.0.0:5000 --workers=10 --worker-class=eventlet --timeout 120 --forwarded-allow-ips='*' --access-logfile - --error-logfile -"

# Set working directory - 'code' dir in container, 'code' dir locally (in code)
WORKDIR /code/dds_web
Expand Down
Loading