backend-api/Dockerfile
2025-10-06 16:00:03 +02:00

14 lines
187 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"]