Dockerfile.ubi 310 B

1234567891011
  1. FROM registry.redhat.io/ubi8/ubi-minimal@sha256:70fe679f2a24b76d5e90fee30c1616afc4f96eed13d77a2ad04af0261c928fb1
  2. ARG TARGETOS
  3. ARG TARGETARCH
  4. COPY bin/external-secrets-${TARGETOS}-${TARGETARCH} /bin/external-secrets
  5. RUN microdnf update
  6. # Run as UID for nobody
  7. USER 65534
  8. ENTRYPOINT ["/bin/external-secrets"]