Dockerfile aktualisiert

This commit is contained in:
2025-11-11 10:02:58 +00:00
parent c825bb4a44
commit ca9c07d4c7

View File

@@ -1,10 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 5000
CMD ["python", "app.py"]
CMD ["python", "app.py"]