Skip to content

Commit da98e47

Browse files
committed
Merge remote-tracking branch 'origin/master' into upgrade-cni-versions
2 parents 6ddf5ba + 725d055 commit da98e47

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ Cyclonus generates hundreds of network policies, their connectivity tables, and
4848
- @jayunit100
4949
- @johnSchnake
5050
- @enhaocui
51+
- @matmerr

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+
CMD [ "cyclonus.exe" ]

0 commit comments

Comments
 (0)