Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion golang/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions golang/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down