Fixing image issue

This commit is contained in:
2026-04-17 23:44:23 -04:00
parent 5016c86867
commit 88885bdd6c
+2 -2
View File
@@ -1,7 +1,8 @@
FROM fedora:43
# Keep downloaded RPMs in the image layer cache so rebuilds are cheaper.
RUN printf '%s\n' 'keepcache=True' 'max_parallel_downloads=10' > /etc/dnf/dnf.conf.d/99-ci-cache.conf
RUN mkdir -p /etc/dnf/dnf.conf.d \
&& printf '%s\n' 'keepcache=True' 'max_parallel_downloads=10' > /etc/dnf/dnf.conf.d/99-ci-cache.conf
RUN dnf -y upgrade --refresh \
&& dnf -y install \
@@ -13,4 +14,3 @@ RUN dnf -y upgrade --refresh \
rpm-build \
rpmdevtools \
&& dnf clean all