Docker - Image Optimization
Given this Dockerfile:
What is the main difference in the image size when built with and without
FROM alpine RUN echo 'Hello' > /file1 RUN echo 'World' > /file2
What is the main difference in the image size when built with and without
--squash?