From 73d7779d89d35622da10e8fadd6324f5f3f10682 Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Tue, 9 Jan 2024 20:12:58 +0100 Subject: [PATCH] Docker Alpine: update to 3.19 Signed-off-by: Nicola Murino --- Dockerfile.alpine | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 81e17f83..56b0e959 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,4 +1,4 @@ -FROM golang:1.21-alpine3.18 AS builder +FROM golang:1.21-alpine3.19 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.18 +FROM alpine:3.19 # Set to "true" to install jq and the optional git and rsync dependencies ARG INSTALL_OPTIONAL_PACKAGES=false