File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ LABEL name="Stackable Operator for {[ operator.pretty_string }]" \
18
18
description="Deploy and manage {[ operator.pretty_string }] clusters."
19
19
20
20
# Update image and install kerberos client libraries
21
- RUN microdnf update -y --setopt=install_weak_deps=False \
22
- && microdnf install -y --setopt=install_weak_deps=False \
21
+ # install_weak_deps in microdnf does not support the literal "False" as dnf does
22
+ # https://github.com/rpm-software-management/microdnf/blob/a600c62f29262d71a6259b70dc220df65a2ab9b5/dnf/dnf-main.c#L176-L189
23
+ RUN microdnf update -y --setopt=install_weak_deps=0 \
24
+ && microdnf install -y --setopt=install_weak_deps=0 \
23
25
krb5-libs \
24
26
libkadm5 \
25
27
&& microdnf clean all \
You can’t perform that action at this time.
0 commit comments