File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,13 @@ LABEL name="Stackable Operator for {[ operator.pretty_string }]" \
17
17
summary="Deploy and manage {[ operator.pretty_string }] clusters." \
18
18
description="Deploy and manage {[ operator.pretty_string }] clusters."
19
19
20
- # Update image
21
- RUN microdnf install -y yum \
22
- && yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \
23
- && yum clean all \
24
- && microdnf clean all
25
-
26
- # Install kerberos client libraries
27
- RUN microdnf install -y krb5-libs libkadm5 && microdnf clean all
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 \
23
+ krb5-libs \
24
+ libkadm5 \
25
+ && microdnf clean all \
26
+ && rm -rf /var/cache/yum
28
27
29
28
COPY LICENSE /licenses/LICENSE
30
29
You can’t perform that action at this time.
0 commit comments