Files
bg_shutdown/server/src/Dockerfile
2026-02-19 14:15:26 +00:00

11 lines
157 B
Docker

FROM python:3.11-slim
COPY . .
WORKDIR /data
RUN pip install --no-cache-dir -r /data/requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]