From 068691b63925a01cef736879066f06d29ccce660 Mon Sep 17 00:00:00 2001 From: zwitschi Date: Tue, 16 Sep 2025 09:49:13 +0200 Subject: [PATCH] fix port in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc35af6..56633c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app ENV PYTHONDONTWRITEBYTECODE=1 \ PYTHONUNBUFFERED=1 \ 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 RUN apt-get update && apt-get install -y --no-install-recommends \