From 2ef942f78b3a5f26afbc25903263c4fb3156a738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesper=20R=C3=B8nn-Jensen?= Date: Fri, 5 Mar 2021 15:56:50 +0100 Subject: [PATCH] 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> --- develop/develop-images/multistage-build.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/develop/develop-images/multistage-build.md b/develop/develop-images/multistage-build.md index f48ba74bdf..c3ab5688d4 100644 --- a/develop/develop-images/multistage-build.md +++ b/develop/develop-images/multistage-build.md @@ -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.