Docker - in CI/CD
Given this Dockerfile snippet:
Which layer will be rebuilt if only
FROM python:3.12-slim RUN pip install flask COPY app.py /app/ RUN python /app/app.py
Which layer will be rebuilt if only
app.py changes during CI build?