Skip to content

Commit

Permalink
ci: fix Docker build (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
unknwon authored Apr 2, 2024
1 parent a28c17f commit 03b723d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
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 \
Expand All @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
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

Expand Down

0 comments on commit 03b723d

Please sign in to comment.