From ea99137a34bb8a1a66ec4136aa6482ce8af6ec03 Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Sethi Date: Thu, 28 Jan 2021 11:56:49 +0000 Subject: [PATCH] Avoid using explicit version for sudo Using an explicit version of sudo does not looks like the requirement, thus removing the version based package add to fix the break for image build Signed-off-by: Prabhjot Singh Sethi --- build/edgednssvr/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/edgednssvr/Dockerfile b/build/edgednssvr/Dockerfile index a4bfb88..f54cd25 100644 --- a/build/edgednssvr/Dockerfile +++ b/build/edgednssvr/Dockerfile @@ -4,7 +4,7 @@ FROM alpine:3.12.0 AS edgedns-deps-image RUN printf "http://nl.alpinelinux.org/alpine/v3.12/main\nhttp://nl.alpinelinux.org/alpine/v3.12/community" >> /etc/apk/repositories -RUN apk add --no-cache sudo=1.9.0-r0 +RUN apk add --no-cache sudo FROM edgedns-deps-image