first try

This commit is contained in:
2025-08-02 17:15:11 +02:00
parent 148835d980
commit b06c15ff4e
4 changed files with 74 additions and 8 deletions

11
Dockerfile.windows Normal file
View File

@@ -0,0 +1,11 @@
# Using Windows Server Core as base
FROM mcr.microsoft.com/windows/servercore:ltsc2022
# Create app directory
WORKDIR C:/app
# Copy the Windows binary
ARG BINARY_PATH
COPY ${BINARY_PATH} watcher_agent.exe
ENTRYPOINT ["C:/app/watcher_agent.exe"]