Skip to content

Commit

Permalink
#43 - bump go version to 1.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jurassix committed May 31, 2024
1 parent b8c92d3 commit c25d9b6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.16 AS builder
FROM golang:1.22.3-alpine3.19 AS builder
RUN apk add --no-cache --update \
alpine-sdk \
ca-certificates \
Expand All @@ -11,7 +11,7 @@ ADD ./Makefile .
RUN set -ex && \
make

FROM alpine:3.16
FROM alpine:3.19
RUN apk add --no-cache --update \
ca-certificates
COPY --from=builder /dist /dist
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export RELAY_MODULE := github.com/fullstorydev/relay-core
all: compile

compile:
go version
go build -o $(DIST_PATH)/relay $(RELAY_MODULE)/relay/main
go build -o $(DIST_PATH)/catcher $(RELAY_MODULE)/catcher/main

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/fullstorydev/relay-core

go 1.20
go 1.22.3

require (
golang.org/x/net v0.23.0
Expand Down
2 changes: 1 addition & 1 deletion relay/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const RelayRelease = "v0.3.4" // TODO set this from tags automatically during git commit
const RelayRelease = "v0.4.0" // TODO set this from tags automatically during git commit

0 comments on commit c25d9b6

Please sign in to comment.