FROM python:3.11-slim WORKDIR /app COPY . . RUN pip install -r requirements.txt CMD ["flask", "run", "--host=0.0.0.0"]