Skip to content

Commit

Permalink
chore: Bump golang version to 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
h0n9 committed Nov 26, 2024
1 parent 23abf8f commit 9ba220e
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,5 +1,5 @@
# builder
FROM golang:1.20.4-alpine3.17 AS builder
FROM golang:1.23.3-alpine3.20 AS builder
WORKDIR /usr/src/app
COPY go.mod go.sum ./
RUN go mod download
Expand All @@ -14,7 +14,7 @@ COPY relayer/ relayer/
RUN go build ./cmd/msg-lake

# runner
FROM alpine:3.17.3 AS runner
FROM alpine:3.20 AS runner
WORKDIR /usr/bin/app
RUN addgroup --system app && adduser --system --shell /bin/false --ingroup app app
COPY --from=builder /usr/src/app/msg-lake .
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/h0n9/msg-lake

go 1.20
go 1.23

require (
github.com/libp2p/go-libp2p v0.32.0
Expand Down

0 comments on commit 9ba220e

Please sign in to comment.