Flask - Deployment
Given this Dockerfile snippet:
What happens when you run the container?
FROM python:3.12-slim WORKDIR /app COPY requirements.txt . RUN pip install -r requirements.txt COPY . . EXPOSE 5000 CMD ["flask", "run", "--host=0.0.0.0"]
What happens when you run the container?
