Skip to content

Commit c25d9b6

Browse files
committed
#43 - bump go version to 1.22.3
1 parent b8c92d3 commit c25d9b6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.16 AS builder
1+
FROM golang:1.22.3-alpine3.19 AS builder
22
RUN apk add --no-cache --update \
33
alpine-sdk \
44
ca-certificates \
@@ -11,7 +11,7 @@ ADD ./Makefile .
1111
RUN set -ex && \
1212
make
1313

14-
FROM alpine:3.16
14+
FROM alpine:3.19
1515
RUN apk add --no-cache --update \
1616
ca-certificates
1717
COPY --from=builder /dist /dist

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export RELAY_MODULE := github.com/fullstorydev/relay-core
77
all: compile
88

99
compile:
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

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fullstorydev/relay-core
22

3-
go 1.20
3+
go 1.22.3
44

55
require (
66
golang.org/x/net v0.23.0

relay/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package 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

0 commit comments

Comments
 (0)