cli/Dockerfile

8 lines
276 B
Docker

# 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
ENTRYPOINT ["/openfeature-cli"]