You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run container
docker run -it -v $(pwd):/src gophertribe/gobuild:1.25-bookworm
# Inside container, use convenience scripts
go-arm go build ./... # Builds for ARMv7
go-arm64 go build ./... # Builds for ARM64# Or set environment manuallyexport CC=arm-linux-gnueabihf-gcc
export GOARCH=arm
export GOOS=linux
go build ./...