Docker - Image Optimization
Given this Dockerfile:
What is the effect on the image size when built with
FROM ubuntu RUN apt-get update RUN apt-get install -y curl RUN echo 'Done'
What is the effect on the image size when built with
docker build --squash compared to a normal build?