- FROM gcr.io/distroless/static@sha256:2e114d20aa6371fd271f854aa3d6b2b7d2e70e797bb3ea44fb677afec60db22c
- # Add metadata
- LABEL maintainer="cncf-externalsecretsop-maintainers@lists.cncf.io" \
- description="External Secrets Operator is a Kubernetes operator that integrates external secret management systems"
- ARG TARGETOS
- ARG TARGETARCH
- COPY bin/external-secrets-${TARGETOS}-${TARGETARCH} /bin/external-secrets
- # Run as UID for nobody
- USER 65534
- ENTRYPOINT ["/bin/external-secrets"]
|