- FROM gcr.io/distroless/static@sha256:d5f030ca7c5793784e9ea4178a116da360250411d13921a5af27c6cb5a5949bf
- # 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"]
|