Files
keyVerwaltung/Dockerfile
Erik Thiele f255e50dd3 first Commit
2026-05-18 21:14:04 +02:00

13 lines
162 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5006
CMD ["python", "app.py"]