From 4d476ee692e2236ec5cd8811cf619c8b82a784ff Mon Sep 17 00:00:00 2001 From: Jan Bernatik Date: Wed, 18 Dec 2024 16:42:40 -0800 Subject: [PATCH] fix docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a53af923e..38bd88ddc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ ARG VERSION ARG ARCH # Build binary -RUN CGO_ENABLED=1 GOOS=linux GOARCH=$ARCH build -o bin -ldflags="-X github.com/onflow/flow-evm-gateway/api.Version=$VERSION" -trimpath cmd/main.go +RUN CGO_ENABLED=1 GOOS=linux GOARCH=$ARCH go build -o bin -ldflags="-X github.com/onflow/flow-evm-gateway/api.Version=$VERSION" -trimpath cmd/main.go RUN chmod a+x bin # RUN APP