mirror of
https://github.com/funkemunky/KDE-x86_64-v4-Fedora.git
synced 2026-05-31 09:01:56 +00:00
18 lines
450 B
Docker
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
|