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