Flask - Deployment
You wrote this Dockerfile for your Flask app:
When you run the container, the app crashes with "ModuleNotFoundError: flask". What is the problem?
FROM python:3.12-slim COPY app.py /app/ CMD ["python", "app.py"]
When you run the container, the app crashes with "ModuleNotFoundError: flask". What is the problem?
