Consider this Dockerfile: FROM ubuntu:22.04 RUN apt-get inst…
Consider this Dockerfile: FROM ubuntu:22.04 RUN apt-get install -y python3 libfoo COPY ./app /app WORKDIR /app CMD [“python3”, “main.py”] You push this image to a registry, and later another user pushes a different image that also starts with FROM ubuntu:22.04. Roughly how much disk/bandwidth is saved by the layered image format?
Read Details