bold-brew/Containerfile
Vito Castellano 741ea99d8c
chore: upgrade to Go 1.25 and golangci-lint v2.5.0
Update Go to 1.25 and golangci-lint to v2.5.0 for better tooling support.
2025-10-11 02:09:34 +02:00

7 lines
No EOL
242 B
Docker

FROM golang:1.25
# Install dependencies
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/HEAD/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.5.0
RUN go install github.com/goreleaser/goreleaser/v2@latest
WORKDIR /app