diff --git a/Dockerfile b/Dockerfile index e96fd49..a37dedc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,6 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app.py . COPY templates ./templates +COPY static ./static EXPOSE 8099 CMD ["gunicorn", "--bind", "0.0.0.0:8099", "--workers", "1", "--threads", "4", "--timeout", "120", "app:app"]