# 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"]