FROM python:3.11-slim WORKDIR /app COPY . . RUN pip install --upgrade pip && pip install . RUN mkdir -p /app/cache CMD ["python", "-m", "main"]