Docker - Image Optimization
Find the mistake in this Dockerfile that causes a larger image size:
FROM ubuntu RUN apt-get update RUN apt-get install -y curl RUN apt-get clean && rm -rf /var/lib/apt/lists/*
