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