perf: reduce Gunicorn workers to 1 for stability

- Change from 4 workers to 1 worker in both Dockerfile and docker-compose.yml
- Helps reduce resource usage and connection reset issues
- Better for single-user or low-traffic deployment scenarios

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-08-07 23:59:00 -04:00
parent 02247340d4
commit 8814dd8994
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ RUN uv venv && \
ENV FLASK_APP=main.py ENV FLASK_APP=main.py
ENV FLASK_ENV=production ENV FLASK_ENV=production
ENV PATH="/app/.venv/bin:$PATH" ENV PATH="/app/.venv/bin:$PATH"
ENV GUNICORN_CMD_ARGS="--workers=4 --bind=0.0.0.0:5000 --timeout=120" ENV GUNICORN_CMD_ARGS="--workers=1 --bind=0.0.0.0:5000 --timeout=120"
# Expose port # Expose port
EXPOSE 5000 EXPOSE 5000

View File

@@ -9,7 +9,7 @@ services:
environment: environment:
- FLASK_APP=main.py - FLASK_APP=main.py
- FLASK_ENV=production - FLASK_ENV=production
- GUNICORN_CMD_ARGS=--workers=4 --bind=0.0.0.0:5000 --timeout=120 --keep-alive=5 --worker-class=sync --worker-connections=1000 --max-requests=1000 --max-requests-jitter=50 - GUNICORN_CMD_ARGS=--workers=1 --bind=0.0.0.0:5000 --timeout=120 --keep-alive=5 --worker-class=sync --worker-connections=1000 --max-requests=1000 --max-requests-jitter=50
# Application configuration # Application configuration
- UPLOAD_FOLDER=app/static/uploads - UPLOAD_FOLDER=app/static/uploads
- DATABASE_PATH=pet_pictures.db - DATABASE_PATH=pet_pictures.db