mirror of
https://codeberg.org/hyperreal/containers
synced 2024-11-01 16:43:10 +01:00
7 lines
270 B
Docker
7 lines
270 B
Docker
FROM registry.fedoraproject.org/fedora:latest
|
|
|
|
RUN printf "fastestmirror=True\ndeltarpm=True\n" | tee -a /etc/dnf/dnf.conf \
|
|
&& dnf update -y \
|
|
&& dnf install -y '@container-management' '@development-tools' '@c-development' ostree rpm-ostree rsync \
|
|
&& dnf clean all
|