homepage.veen.world/Dockerfile

19 lines
336 B
Docker
Raw Permalink Normal View History

2025-01-08 14:59:36 +01:00
# Basis-Image für Python
FROM python:slim
# Arbeitsverzeichnis festlegen
WORKDIR /app
# Abhängigkeiten kopieren und installieren
COPY app/requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Anwendungscode kopieren
COPY app/ .
# Port freigeben
EXPOSE 5000
# Startbefehl
CMD ["python", "app.py"]