Docker - Image Optimization
Given this Dockerfile snippet:
What is the main benefit of using the
FROM python:3.12-slim RUN pip install flask COPY . /app RUN rm -rf /tmp/*
What is the main benefit of using the
python:3.12-slim base image here?