Files
KDE-x86_64-v4-Fedora/ci/fedora-rpm-builder.Containerfile
funkemunky b939a93250
Validate Fedora x86_64-v3 Copr SRPMs (Gitea) / prepare (push) Successful in 4s
Validate Fedora x86_64-v3 Copr SRPMs (Gitea) / validate-srpms (push) Failing after 17s
Fixing act failure
2026-04-27 13:53:23 -04:00

18 lines
450 B
Docker

FROM fedora:43
# Keep downloaded RPMs in the image layer cache so rebuilds are cheaper.
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 \
git \
make \
nodejs \
python3 \
rpm-build \
copr-cli \
ca-certificates \
curl \
&& dnf clean all