What’s a Docker image anyway? Let’s create a simple image, export it, and look take a look at what it’s made of. Creating An Image Let’s keep it really simple. I want to investigate the image of the following Dockerfile: FROM ubuntu RUN echo hihi RUN touch /hi RUN rm /hi CMD ["echo", "hello"] Completely without any practical purpose! We don’t even make the effort to use a properly tagged base image.