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"]