File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1- FROM alpine:3.16 AS builder
1+ FROM golang:1.22.3-alpine3.19 AS builder
22RUN apk add --no-cache --update \
33 alpine-sdk \
44 ca-certificates \
@@ -11,7 +11,7 @@ ADD ./Makefile .
1111RUN set -ex && \
1212 make
1313
14- FROM alpine:3.16
14+ FROM alpine:3.19
1515RUN apk add --no-cache --update \
1616 ca-certificates
1717COPY --from=builder /dist /dist
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ export RELAY_MODULE := github.com/fullstorydev/relay-core
77all : compile
88
99compile :
10+ go version
1011 go build -o $(DIST_PATH ) /relay $(RELAY_MODULE ) /relay/main
1112 go build -o $(DIST_PATH ) /catcher $(RELAY_MODULE ) /catcher/main
1213
Original file line number Diff line number Diff line change 11module github.com/fullstorydev/relay-core
22
3- go 1.20
3+ go 1.22.3
44
55require (
66 golang.org/x/net v0.23.0
Original file line number Diff line number Diff line change 11package version
22
3- const RelayRelease = "v0.3.4 " // TODO set this from tags automatically during git commit
3+ const RelayRelease = "v0.4.0 " // TODO set this from tags automatically during git commit
You can’t perform that action at this time.
0 commit comments