FROM python:3.9-slim-buster WORKDIR /app COPY script.py ./ RUN pip install flask pyyaml CMD ["python", "script.py"]