From 50a9dca7203c44018aa44536d07f8e621fb2597a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Tue, 21 Jul 2020 11:09:41 +0200 Subject: [PATCH] Dockerfile: Update to alpine-3.12 (#645) https://alpinelinux.org/posts/Alpine-3.12.0-released.html --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cb4c83b..ccf672f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY cmd/ cmd/ ARG KUBEBENCH_VERSION RUN GO111MODULE=on CGO_ENABLED=0 go install -a -ldflags "-X github.com/aquasecurity/kube-bench/cmd.KubeBenchVersion=${KUBEBENCH_VERSION} -w" -FROM alpine:3.11 AS run +FROM alpine:3.12 AS run WORKDIR /opt/kube-bench/ # add GNU ps for -C, -o cmd, and --no-headers support # https://github.com/aquasecurity/kube-bench/issues/109