Dockerfile 487 B

1234567891011121314
  1. FROM gcr.io/distroless/static@sha256:47b2d72ff90843eb8a768b5c2f89b40741843b639d065b9b937b07cd59b479c6
  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"]