Merge pull request #191 from jgarrouste/master

Reversed sentences
This commit is contained in:
Jérôme Petazzoni
2018-04-10 15:03:09 -07:00
committed by GitHub

View File

@@ -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.
---