Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pass --allowerasing to dnf for package conflict resolution #70

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/bls/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY extra /
COPY cfsctl /usr/bin
RUN --mount=type=cache,target=/var/cache/libdnf5 <<EOF
set -eux
dnf --setopt keepcache=1 install -y systemd util-linux skopeo composefs strace dosfstools kernel
dnf --setopt keepcache=1 install --allowerasing -y systemd util-linux skopeo composefs strace dosfstools kernel
systemctl enable systemd-networkd
passwd -d root
mkdir /sysroot
Expand Down
2 changes: 1 addition & 1 deletion examples/uki/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/var/cache/libdnf5 <<EOF
# we should install kernel-modules here, but can't
# because it'll pull in the entire kernel with it
# it seems to work fine for now....
dnf --setopt keepcache=1 install -y \
dnf --setopt keepcache=1 install --allowerasing -y \
composefs \
dosfstools \
policycoreutils-python-utils \
Expand Down
2 changes: 1 addition & 1 deletion examples/unified/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN --mount=type=cache,target=/var/cache/libdnf5 <<EOF
# we should install kernel-modules here, but can't
# because it'll pull in the entire kernel with it
# it seems to work fine for now....
dnf --setopt keepcache=1 install -y \
dnf --setopt keepcache=1 install --allowerasing -y \
composefs \
dosfstools \
policycoreutils-python-utils \
Expand Down