FROM python:3.10.12-slim-bookworm RUN python -m pip install pipenv COPY Pipfile . COPY Pipfile.lock . COPY *.py . RUN pipenv install --system --deploy CMD ["python", "app.py"]