correction

This commit is contained in:
Jérémy GARROUSTE
2018-04-10 22:56:42 +02:00
parent 18a81120bc
commit c7198b3538

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