Docker - Image Optimization
What will be the result of this Dockerfile snippet regarding image size?
FROM ubuntu RUN apt-get update && apt-get install -y python3 RUN rm -rf /var/lib/apt/lists/*
