mirror of https://github.com/docker/docs.git
Update multistage-build.md
This commit is contained in:
parent
d95f61dbcd
commit
7b975d00d0
|
@ -92,7 +92,7 @@ With multi-stage builds, you use multiple `FROM` statements in your Dockerfile.
|
||||||
Each `FROM` instruction can use a different base, and each of them begins a new
|
Each `FROM` instruction can use a different base, and each of them begins a new
|
||||||
stage of the build. You can selectively copy artifacts from one stage to
|
stage of the build. You can selectively copy artifacts from one stage to
|
||||||
another, leaving behind everything you don't want in the final image. To show
|
another, leaving behind everything you don't want in the final image. To show
|
||||||
how this works, Let's adapt the Dockerfile from the previous section to use
|
how this works, let's adapt the Dockerfile from the previous section to use
|
||||||
multi-stage builds.
|
multi-stage builds.
|
||||||
|
|
||||||
**`Dockerfile`**:
|
**`Dockerfile`**:
|
||||||
|
|
Loading…
Reference in New Issue