From a6794cdfed193c7f897b97735522947e1592ad7d Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Tue, 4 Mar 2025 12:17:17 +0100 Subject: [PATCH] feat(deps): update go compiler to 1.24 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 84e501d..54fb9f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM golang:1.23.5@sha256:e213430692e5c31aba27473cdc84cfff2896d0c097e984bef67b6a44c75a8181 AS builder_go +FROM golang:1.24.0 AS builder_go WORKDIR /web-app-template -RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.62.2 +RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest RUN go install github.com/a-h/templ/cmd/templ@latest RUN go install github.com/vektra/mockery/v2@latest COPY go.mod go.sum ./