From 737aed5dbb4734e79296fa6381089335a2282a49 Mon Sep 17 00:00:00 2001 From: sascha Date: Mon, 27 Jul 2026 20:59:51 +0200 Subject: [PATCH] fix: remove static/ from Dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7fb4d8f..d860006 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app.py . -COPY static/ static/ COPY templates/ templates/ CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "120", "app:app"]