FROM python:3.11-slim WORKDIR /app COPY . . EXPOSE 8000 RUN pip3 install -r requirements.txt ENTRYPOINT ["python", "app.py"]