diff --git a/contrib/hello-finch/Dockerfile b/contrib/hello-finch/Dockerfile index a0311e637..3f489438d 100644 --- a/contrib/hello-finch/Dockerfile +++ b/contrib/hello-finch/Dockerfile @@ -2,7 +2,7 @@ FROM public.ecr.aws/docker/library/golang:1.19 AS builder WORKDIR /build COPY . . -RUN CGO_ENABLED=0 go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o hello-finch . +RUN CGO_ENABLED=0 go build -a -o hello-finch . FROM scratch COPY --from=builder /build/hello-finch /app/