Files
Code-000/Dockerfile
T
phillip dfd65858b3 Dockerfile aktualisiert
changed name to Dockerfile from dockerfile
2025-07-09 16:43:37 +02:00

11 lines
159 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:5000", "main:app"]