2025-10-06 16:17:13 +02:00

11 lines
184 B
Docker

FROM python:3.12-slim
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
WORKDIR /app
COPY src/ /app/
ENTRYPOINT ["sh", "-c", "sleep 10 && python main.py"]