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

Update go version to 1.22.4 #4919

Merged
merged 9 commits into from
Jun 18, 2024
Prev Previous commit
Next Next commit
Update go version of Dockerfile in /docs to 1.22.4
Signed-off-by: Yoshiki Fujikane <ffjlabo@gmail.com>
ffjlabo committed Jun 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit b227e4ee69575e27079894df77f3038547472aef
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.3-alpine3.19 AS builder
FROM golang:1.22.4-alpine3.20 AS builder
COPY main.go .
RUN go build -o /server main.go