From 04bdd3a5e422a0fd5ebefbec693eca08b6cabb71 Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Sat, 3 Dec 2022 12:30:53 +0100 Subject: [PATCH] docker: bump alpine to 3.17 Signed-off-by: Nicola Murino --- Dockerfile.alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 6ab104b2..29541e07 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM golang:1.19-alpine3.16 AS builder +FROM golang:1.19-alpine3.17 AS builder ENV GOFLAGS="-mod=readonly" @@ -27,7 +27,7 @@ RUN set -xe && \ RUN apk add --update --no-cache openssh-client-common -FROM alpine:3.16 +FROM alpine:3.17 # Set to "true" to install jq and the optional git and rsync dependencies ARG INSTALL_OPTIONAL_PACKAGES=false