15 lines
245 B
Docker
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"]
|