Skip to content

Commit c6a63ea

Browse files
committed
fix(docker): resolve DNF package dependency conflict in cluster build
Add --no-best --skip-broken flags to dnf install in cluster image build to handle util-linux package dependency on liblastlog2 which has broken dependencies in the hummingbird repository. This allows the cluster image build to complete successfully by skipping the problematic package version and selecting an alternative that satisfies dependencies.
1 parent c58f3c7 commit c6a63ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deploy/docker/Dockerfile.images

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ FROM quay.io/hummingbird/core-runtime:latest-builder AS cluster
230230
USER root
231231

232232
RUN dnf install -y fedora-repos && \
233-
dnf install -y \
233+
dnf install -y --no-best --skip-broken \
234234
ca-certificates \
235235
iptables \
236236
util-linux \

0 commit comments

Comments
 (0)