Skip to content

Commit

Permalink
release: disable cgo, bump to min go version 1.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kamikazechaser committed Nov 20, 2024
1 parent 5962c26 commit 23a7561
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.23.0-bookworm AS build
FROM golang:1.23.3-bookworm AS build

ENV CGO_ENABLED=1
ENV CGO_ENABLED=0

ARG BUILDPLATFORM
ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BIN := eth-tracker
BOOTSTRAP_BIN := eth-tracker-cache-bootstrap
DB_FILE := tracker_db
BUILD_CONF := CGO_ENABLED=1 GOOS=linux GOARCH=amd64
BUILD_CONF := CGO_ENABLED=0 GOOS=linux GOARCH=amd64
BUILD_COMMIT := $(shell git rev-parse --short HEAD 2> /dev/null)
DEBUG := DEV=true

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/grassrootseconomics/eth-tracker

go 1.23.0
go 1.23.3

replace github.com/ethereum/go-ethereum => github.com/celo-org/op-geth v1.101408.1-0.20241003173630-fd593f27afa2

Expand Down

0 comments on commit 23a7561

Please sign in to comment.