Files
detections/e2e/mocks/loader/Dockerfile
T
2026-03-23 14:07:54 +02:00

7 lines
188 B
Docker

FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir flask gunicorn
COPY app.py .
EXPOSE 8080
CMD ["gunicorn", "-b", "0.0.0.0:8080", "-w", "1", "--timeout", "120", "app:app"]