From 0b3954257fec660310ca387908537cb3bda8207a Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Sat, 1 Jul 2017 15:41:46 +0100 Subject: [PATCH] tools: Fix containerd commit environment Commit 4699f80e ("test: add test-containerd") added the containerd commit hash to the alpine base image. Unfortunately, setting it as ARG does not work and it needs to be set with ENV for other builds to pick it up. Signed-off-by: Rolf Neugebauer --- tools/alpine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/alpine/Dockerfile b/tools/alpine/Dockerfile index e9fbfee87..0a55636b3 100644 --- a/tools/alpine/Dockerfile +++ b/tools/alpine/Dockerfile @@ -55,4 +55,4 @@ COPY --from=shellcheck /usr/local/lib/ /usr/local/lib/ RUN apk update && apk upgrade -a -ARG CONTAINERD_COMMIT=c215531a8f63a98a69134e804fea4ee6d354bb90 +ENV CONTAINERD_COMMIT=c215531a8f63a98a69134e804fea4ee6d354bb90