FROM python:3.12 RUN pip install pipenv WORKDIR /app COPY Pipfile* /app/ RUN pipenv install --system --deploy COPY . /app/ ENTRYPOINT python main.py