Files
2025-02-20 00:17:50 +01:00

15 lines
245 B
Docker

FROM python:3.9-slim
WORKDIR /app
# Abhängigkeiten kopieren und installieren
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Anwendungscode kopieren
COPY . .
EXPOSE 9559
CMD ["python", "app.py"]