diff --git a/m03_developer/monolith/Dockerfile b/m03_developer/monolith/Dockerfile index 01346da..9961363 100644 --- a/m03_developer/monolith/Dockerfile +++ b/m03_developer/monolith/Dockerfile @@ -14,5 +14,5 @@ RUN pip install -r requirements.txt COPY . . EXPOSE 8000 -ENTRYPOINT ["gunicorn", "--bind=0.0.0.0"] +ENTRYPOINT ["gunicorn", "-w", "4", "--bind=0.0.0.0"] CMD ["app:app"]