From a768652fd66f60cb23d0cdea7e72624c2ca97d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ste=CC=81phane=20Este-Gracias?= Date: Sat, 12 Mar 2022 17:10:35 +0100 Subject: [PATCH] Support STOPSIGNAL instruction in commit change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Este-Gracias --- builder/dockerfile/builder.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/dockerfile/builder.go b/builder/dockerfile/builder.go index f42bb1bc63..7918db547f 100644 --- a/builder/dockerfile/builder.go +++ b/builder/dockerfile/builder.go @@ -35,6 +35,7 @@ var validCommitCommands = map[string]bool{ "expose": true, "label": true, "onbuild": true, + "stopsignal": true, "user": true, "volume": true, "workdir": true,