From 3e3e32484c6ac9de94cc70fc6d5660d8e61cb4e1 Mon Sep 17 00:00:00 2001 From: donpat1to Date: Mon, 4 Aug 2025 20:51:44 +0200 Subject: [PATCH] changed binary direction in Dockerfile.windows --- Dockerfile.windows | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.windows b/Dockerfile.windows index 124c721..ae6b771 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -6,6 +6,6 @@ WORKDIR C:/app # Copy the Windows binary ARG BINARY_NAME -COPY ${BINARY_NAME}.exe . +COPY windows-bin/${BINARY_NAME}.exe . -ENTRYPOINT ["C:/app/watcher_agent.exe"] \ No newline at end of file +ENTRYPOINT ["C:/app/${BINARY_NAME}.exe"] \ No newline at end of file