changed binary direction in Dockerfile.windows

This commit is contained in:
2025-08-04 20:51:44 +02:00
parent ba14f91d67
commit 3e3e32484c

View File

@@ -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"]
ENTRYPOINT ["C:/app/${BINARY_NAME}.exe"]