Dockerfile.ubi 310 B

1234567891011121314
  1. FROM registry.access.redhat.com/ubi8/go-toolset AS builder
  2. ARG TARGETOS
  3. ARG TARGETARCH
  4. COPY bin/external-secrets-${TARGETOS}-${TARGETARCH} /bin/external-secrets
  5. FROM registry.access.redhat.com/ubi8/ubi-minimal
  6. RUN microdnf update -y
  7. # Run as UID for nobody
  8. USER 65534
  9. ENTRYPOINT ["/bin/external-secrets"]