Remove retrying repository install
This was most likely caused by networking issues unrelated to the build, so this workaround will be reversed to not hide any more problems.
This commit is contained in:
parent
3e4f3c65dd
commit
4653fd6a08
2 changed files with 4 additions and 10 deletions
|
@ -3,11 +3,8 @@ FROM quay.io/fedora-ostree-desktops/silverblue:41
|
||||||
# dnf configuration has to be in effect during build
|
# dnf configuration has to be in effect during build
|
||||||
COPY etc/dnf /etc/dnf
|
COPY etc/dnf /etc/dnf
|
||||||
|
|
||||||
# Add rpmfusion repositories (this sometimes fails, so it has 3 tries before failing the build)
|
# Add rpmfusion repositories
|
||||||
RUN (dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm) || \
|
RUN dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||||
(sleep 60 && dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm) || \
|
|
||||||
(sleep 60 && dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm)
|
|
||||||
|
|
||||||
# Install ffmpeg (removing all the -free replacements is required)
|
# Install ffmpeg (removing all the -free replacements is required)
|
||||||
RUN dnf5 -y install --allowerasing ffmpeg
|
RUN dnf5 -y install --allowerasing ffmpeg
|
||||||
|
|
||||||
|
|
|
@ -3,11 +3,8 @@ FROM quay.io/fedora-ostree-desktops/kinoite:41
|
||||||
# dnf configuration has to be in effect during build
|
# dnf configuration has to be in effect during build
|
||||||
COPY etc/dnf /etc/dnf
|
COPY etc/dnf /etc/dnf
|
||||||
|
|
||||||
# Add rpmfusion repositories (this sometimes fails, so it has 3 tries before failing the build)
|
# Add rpmfusion repositories
|
||||||
RUN (dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm) || \
|
RUN dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||||
(sleep 60 && dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm) || \
|
|
||||||
(sleep 60 && dnf5 -y install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm)
|
|
||||||
|
|
||||||
# Install ffmpeg (removing all the -free replacements is required)
|
# Install ffmpeg (removing all the -free replacements is required)
|
||||||
RUN dnf5 -y install --allowerasing ffmpeg
|
RUN dnf5 -y install --allowerasing ffmpeg
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue