From 99c25f16b9def0368fc53d8f972fed5c8d3e1ee8 Mon Sep 17 00:00:00 2001 From: Umputun Date: Sun, 24 Mar 2024 22:33:27 -0500 Subject: [PATCH] update go image with 1.22 The Dockerfile has been updated to use the newest versions of Go, GolangCI, and GoReleaser. --- build.go/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.go/Dockerfile b/build.go/Dockerfile index ab5a643..ffa3561 100644 --- a/build.go/Dockerfile +++ b/build.go/Dockerfile @@ -1,13 +1,13 @@ -FROM golang:1.21-alpine +FROM golang:1.22-alpine LABEL maintainer="Umputun " ENV \ TIME_ZONE=America/Chicago \ CGO_ENABLED=0 \ GOVERALLS=0.0.11 \ - GOLANGCI=1.54.1 \ + GOLANGCI=1.57.1 \ STATIK=0.1.7 \ - GORELEASER=1.20.0 + GORELEASER=1.24.0 # install gcc in order to be able to go test package with -race RUN apk --no-cache add gcc libc-dev