Files
jamie b7e9f9a02d
CI / Build and Push (push) Successful in 4s
refactor: 🎨 improved logging to console
2026-01-31 15:34:58 +00:00

6 lines
221 B
Docker

FROM python:3.14-slim
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app", "--log-level", "info", "--capture-output", "--enable-stdio-inheritance"]