initial commit

This commit is contained in:
2025-12-25 22:10:57 +00:00
commit 8adb52608f
46 changed files with 7570 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# Runtime stage - using distroless for minimal attack surface
FROM gcr.io/distroless/static:nonroot
WORKDIR /
# Copy the binary from goreleaser build
COPY kubemirror /kubemirror
# Use nonroot user (65532)
USER 65532:65532
ENTRYPOINT ["/kubemirror"]