diff --git a/slides/intro/Building_Images_With_Dockerfiles.md b/slides/intro/Building_Images_With_Dockerfiles.md index d45da8b4..6c4ed788 100644 --- a/slides/intro/Building_Images_With_Dockerfiles.md +++ b/slides/intro/Building_Images_With_Dockerfiles.md @@ -143,14 +143,14 @@ Removing intermediate container e01b294dbffd ---> eb8d9b561b37 ``` -* The `RUN` command is executed in this container. - * A container (`e01b294dbffd`) is created from the base image. -* The build container (`e01b294dbffd`) is removed. +* The `RUN` command is executed in this container. * The container is committed into an image (`eb8d9b561b37`). +* The build container (`e01b294dbffd`) is removed. + * The output of this step will be the base image for the next one. ---