Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump golang from 1.23 to 1.24 in /build/gateway/wireguard #2931

Closed
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
4 changes: 2 additions & 2 deletions build/gateway/wireguard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.23 AS gobuilder-wg
FROM golang:1.24 AS gobuilder-wg
WORKDIR /tmp/builder

ARG ref=12269c2761734b15625017d8565745096325392f
RUN git clone https://git.zx2c4.com/wireguard-go && cd wireguard-go && git checkout $ref && \
CGO_ENABLED=0 GOOS=linux GOARCH=$(go env GOARCH) go build -ldflags="-s -w" -o wireguard-go


FROM golang:1.23 AS gobuilder
FROM golang:1.24 AS gobuilder
WORKDIR /tmp/builder

COPY go.mod ./go.mod
Expand Down