mirror of https://github.com/docker/docs.git
Add compatibility notes for docker multistage build (#12379)
* add compatibility notes for docker multistage build add note that multistage docker builds are supported from version 17.05 and upwards. (this is according to the release notes https://docs.docker.com/engine/release-notes/17.05/) * Minor update Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
This commit is contained in:
parent
c16d0e9d74
commit
2ef942f78b
|
|
@ -196,3 +196,7 @@ FROM builder as build2
|
|||
COPY source2.cpp source.cpp
|
||||
RUN g++ -o /binary source.cpp
|
||||
```
|
||||
|
||||
## Version compatibility
|
||||
|
||||
Multistage build syntax was introduced in Docker Engine 17.05.
|
||||
|
|
|
|||
Loading…
Reference in New Issue