-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:alpine3.16 AS binarybuilder | ||
FROM golang:alpine3.19 AS binarybuilder | ||
RUN apk --no-cache --no-progress add --virtual \ | ||
build-deps \ | ||
build-base \ | ||
|
@@ -17,7 +17,7 @@ RUN task build | |
# Install Codenotify | ||
RUN GOBIN=/dist/.bin go install github.com/sourcegraph/[email protected] | ||
|
||
FROM alpine:3.16 | ||
FROM alpine:3.19 | ||
RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories \ | ||
&& apk --no-cache --no-progress add \ | ||
ca-certificates \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/codenotify/codenotify.run | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
toolchain go1.22.1 | ||
|
||
|