fix: remove static/ from Dockerfile

This commit is contained in:
sascha 2026-07-27 20:59:51 +02:00
parent 012c1b2bad
commit 737aed5dbb

View file

@ -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"]