From 872a85f0fc45bac5e9f308927c56915a0e7ba575 Mon Sep 17 00:00:00 2001 From: eball Date: Wed, 19 Jun 2024 18:00:25 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3caaa48..d623921 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY main.go main.go COPY pkg/ pkg/ # Build -RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o osnode_init main.go +RUN CGO_ENABLED=0 go build -o osnode_init main.go # Use distroless as minimal base image to package the manager binary # Refer to https://github.com/GoogleContainerTools/distroless for more details