(chore) setup kmsvc-cli

This commit is contained in:
Story Crater Bot
2026-08-17 10:14:44 -07:00
commit d1c7f75cae
22 changed files with 1664 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# Runtime stage
FROM alpine:latest
# Install runtime dependencies
RUN apk add --no-cache ca-certificates
WORKDIR /app
# Copy pre-built binary for the target platform
ARG TARGETARCH
COPY kmsvc-${TARGETARCH} kmsvc
# Make it executable
RUN chmod +x kmsvc
ENTRYPOINT ["./kmsvc"]
CMD ["--help"]