From bdd20c963c425bc4ab499b0127b4525939930a52 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Wed, 8 Apr 2020 18:17:58 +0200 Subject: [PATCH] Unpin base docker images The upside is that image building will always use the latest stable version of the alpine OS, which might include security fixes. The downside is that it's less reproducible, because the full version isn't given. While this commit isn't necessary per se, it's nice to have an image that will be up to date, when we'll build it. --- cmd/kured/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kured/Dockerfile b/cmd/kured/Dockerfile index 56ce333..bf11b25 100644 --- a/cmd/kured/Dockerfile +++ b/cmd/kured/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.11.3 +FROM alpine:3.11 RUN apk update && apk add ca-certificates tzdata && rm -rf /var/cache/apk/* # NB: you may need to update RBAC permissions when upgrading kubectl - see kured-rbac.yaml for details ADD https://storage.googleapis.com/kubernetes-release/release/v1.18.0/bin/linux/amd64/kubectl /usr/bin/kubectl