From e7aa479b70b1b24d25061275a6333dbc17419f74 Mon Sep 17 00:00:00 2001 From: Karthik P Date: Thu, 8 Jan 2026 17:40:25 +0530 Subject: [PATCH] Alphine version update. --- golang/Dockerfile | 2 +- golang/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/golang/Dockerfile b/golang/Dockerfile index 8943298..0c9a8d1 100644 --- a/golang/Dockerfile +++ b/golang/Dockerfile @@ -1,4 +1,4 @@ # Use official Golang image with defined version and os, generally alpine with version -FROM golang:1.25-alpine3.22 +FROM golang:1.25-alpine3.23 RUN apk add --no-cache openssh git RUN apk add --upgrade libcrypto3 libssl3 git busybox ssl_client diff --git a/golang/Makefile b/golang/Makefile index e1798a2..2b93986 100644 --- a/golang/Makefile +++ b/golang/Makefile @@ -21,10 +21,10 @@ docker-buildx-init: docker buildx ls build-all: docker-buildx-init - docker buildx build --platform linux/arm64,linux/amd64 --tag tozny/golang:1.25-alpine3.22 ./ + docker buildx build --platform linux/arm64,linux/amd64 --tag tozny/golang:1.25-alpine3.23 ./ push-all: docker-buildx-init - docker buildx build --push --platform linux/arm64,linux/amd64 --tag tozny/golang:1.25-alpine3.22 ./ + docker buildx build --push --platform linux/arm64,linux/amd64 --tag tozny/golang:1.25-alpine3.23 ./ # Don't export to shell to keep stable per invoke of make / prevent dynamic interpolation # Variables used to uniquely tag docker builds