diff --git a/Dockerfile b/Dockerfile index 4669b248..f2e8a765 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ WORKDIR /src RUN apk add --no-cache file ENV GOMODCACHE /root/.cache/gocache RUN --mount=target=. --mount=target=/root/.cache,type=cache \ - CGO_ENABLED=0 go build -o /out/dagger ./cmd/dagger && file /out/dagger | grep "statically linked" + CGO_ENABLED=0 go build -o /out/dagger -ldflags '-s -d -w' ./cmd/dagger; \ + file /out/dagger | grep "statically linked" FROM scratch COPY --from=build /out/dagger /bin/dagger