mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-15 17:51:01 +00:00
8643e65100
* chore: bump dependencies Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> * fix: bump libksba package Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> * fix: cleanup go sum Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
11 lines
246 B
Text
11 lines
246 B
Text
FROM registry.access.redhat.com/ubi8/ubi-minimal
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
COPY bin/external-secrets-${TARGETOS}-${TARGETARCH} /bin/external-secrets
|
|
|
|
RUN microdnf update
|
|
|
|
# Run as UID for nobody
|
|
USER 65534
|
|
|
|
ENTRYPOINT ["/bin/external-secrets"]
|