From 5a9424d0b100d3f362a6b423ea6b7b595fe54448 Mon Sep 17 00:00:00 2001 From: Pawel Rozlach Date: Tue, 16 Nov 2021 13:42:59 +0100 Subject: [PATCH] Update Alpine to v3.14 Signed-off-by: Pawel Rozlach --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 61f4a28b..438dbac6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.13 as builder +FROM alpine:3.14 as builder RUN apk add --no-cache ca-certificates curl @@ -9,7 +9,7 @@ RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECT -o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && \ kubectl version --client=true -FROM alpine:3.13 as flux-cli +FROM alpine:3.14 as flux-cli # Create minimal nsswitch.conf file to prioritize the usage of /etc/hosts over DNS queries. # https://github.com/gliderlabs/docker-alpine/issues/367#issuecomment-354316460