Added rebuild

This commit is contained in:
Roman Meshko
2026-04-26 13:53:45 +03:00
parent 242fb11bbe
commit 71d4b5309f
2 changed files with 6 additions and 4 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir flask gunicorn
COPY app.py .
COPY mocks/loader/app.py .
COPY fixtures /models
EXPOSE 8080
CMD ["gunicorn", "-b", "0.0.0.0:8080", "-w", "1", "--timeout", "120", "app:app"]