Files
watcheragent/Dockerfile.windows

11 lines
248 B
Docker

# 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_NAME
COPY windows-bin/${BINARY_NAME}.exe .
ENTRYPOINT ["C:/app/${BINARY_NAME}.exe"]