FROM python:3.11 WORKDIR /code/ COPY requirements.txt requirements.txt RUN pip install --no-cache-dir --upgrade -r requirements.txt COPY app app RUN python3 -m app.main CMD ["python3", "-m", "app"]