Skip to content

Commit

Permalink
chore: go 1.23
Browse files Browse the repository at this point in the history
fixes:
go.mod requires go >= 1.22 (running go 1.21.13; GOTOOLCHAIN=local)
  • Loading branch information
lidel committed Aug 30, 2024
1 parent ace7077 commit 736f054
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 --platform=${BUILDPLATFORM:-linux/amd64} golang:1.21-bookworm AS builder
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.23-bookworm AS builder

LABEL org.opencontainers.image.source=https://github.com/ipfs/ipfs-check
LABEL org.opencontainers.image.description="Check if you can find your content on IPFS"
Expand Down Expand Up @@ -39,4 +39,4 @@ VOLUME $DATA_PATH
WORKDIR $DATA_PATH

USER ipfs
ENTRYPOINT ["tini", "--", "/usr/local/bin/ipfs-check", "start"]
ENTRYPOINT ["tini", "--", "/usr/local/bin/ipfs-check", "start"]
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/ipfs/ipfs-check

go 1.22
go 1.23

require (
github.com/gavv/httpexpect/v2 v2.16.0
Expand Down

0 comments on commit 736f054

Please sign in to comment.