Skip to content

Commit 7d358ee

Browse files
committed
windows dockerfile
1 parent 6f0fbd9 commit 7d358ee

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

cmd/cyclonus/Dockerfile.windows

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM golang:windowsservercore-ltsc2022 AS builder
2+
WORKDIR /go/src/github.com/cyclonus/
3+
COPY . .
4+
RUN $Env:CGO_ENABLED=0; go build -v -o /cyclonus.exe ./cmd/cyclonus/
5+
6+
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022
7+
COPY --from=builder /cyclonus.exe cyclonus.exe
8+
ENTRYPOINT [ "cyclonus.exe" ]

0 commit comments

Comments
 (0)