Merge branch 'main' into set-code-default

This commit is contained in:
Michael Beemer 2025-01-27 09:21:30 -05:00 committed by GitHub
commit 852ddaca4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot
COPY ./openfeature-cli /openfeature-cli
USER 65532:65532
FROM alpine:3.21
ENTRYPOINT ["/openfeature-cli"]
COPY ./openfeature-cli usr/local/bin/openfeature-cli
RUN chmod +x /usr/local/bin/openfeature-cli
ENTRYPOINT ["/usr/local/bin/openfeature-cli"]