fix port in Dockerfile

This commit is contained in:
2025-09-16 09:49:13 +02:00
parent 0746cc4296
commit 068691b639

View File

@@ -7,7 +7,7 @@ WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1 \ ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \ PYTHONUNBUFFERED=1 \
APP_PORT=8081 \ APP_PORT=8081 \
GUNICORN_CMD_ARGS="--bind=0.0.0.0:${APP_PORT} --workers=4 --threads=2" GUNICORN_CMD_ARGS="--bind=0.0.0.0:8081 --workers=4 --threads=2"
# Install system deps # Install system deps
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \