From ebe3325659f6866324f1a136274d7f4af635f322 Mon Sep 17 00:00:00 2001 From: sjc Date: Wed, 28 May 2025 08:19:25 -0400 Subject: [PATCH] Fix Windows Build Update example filename --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7a756ca..b823958 100644 --- a/Dockerfile +++ b/Dockerfile @@ -66,6 +66,6 @@ FROM bin-unix AS bin-linux FROM bin-unix AS bin-darwin FROM scratch AS bin-windows -COPY --from=build /out/example /example.exe +COPY --from=build /out/example.exe /example.exe FROM bin-${TARGETOS} AS bin