FROM python:3.12-slim RUN pip install flask requests COPY . /app WORKDIR /app EXPOSE 9000 CMD ["python", "app.py"]