Dockerfile 487 B

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