From 6fe6d2db47466087b3f73374d44bd1fc6fa89b1d Mon Sep 17 00:00:00 2001 From: sjc Date: Wed, 28 May 2025 07:50:07 -0400 Subject: [PATCH] Update Build for All Entrypoints Build process updated to find example in a subdir --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cee9d34..7a756ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ARG TARGETARCH RUN --mount=target=. \ --mount=type=cache,target=/go/pkg/mod \ --mount=type=cache,target=/root/.cache/go-build \ - GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o /out/example . + GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o /out/ ./... FROM base AS unit-test RUN --mount=target=. \