summaryrefslogtreecommitdiffstats
path: root/test/container/Dockerfile-Fedora-latest
blob: 2ce397513e359bd2bd759e66948d01e3405b0c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
FROM registry.fedoraproject.org/fedora:latest

MAINTAINER https://github.com/dracutdevs/dracut

# Install needed packages for the dracut CI container
RUN dnf -y install --setopt=install_weak_deps=False \
    asciidoc \
    bash-completion \
    biosdevname \
    bluez \
    btrfs-progs \
    busybox \
    bzip2 \
    cifs-utils \
    cryptsetup \
    dash \
    dbus-daemon \
    device-mapper-multipath \
    dhcp-client \
    dhcp-server \
    dmraid \
    e2fsprogs \
    f2fs-tools \
    fcoe-utils \
    fuse3 \
    gcc \
    git \
    iproute \
    iputils \
    iscsi-initiator-utils \
    kbd \
    kernel \
    kmod-devel \
    libkcapi-hmaccalc \
    libselinux-utils \
    lvm2 \
    lzop \
    make \
    mdadm \
    memstrack \
    mksh \
    nbd \
    ndctl \
    NetworkManager \
    nfs-utils \
    ntfs-3g \
    ntfsprogs \
    nvme-cli \
    parted \
    pcsc-lite \
    pigz \
    qemu-system-x86-core \
    rng-tools \
    rpm-build \
    sbsigntools \
    scsi-target-utils \
    ShellCheck \
    shfmt \
    squashfs-tools \
    strace \
    sudo \
    systemd-boot-unsigned \
    systemd-networkd \
    systemd-resolved \
    tar \
    tcpdump \
    tpm2-tools \
    wget \
    which \
    xz \
    && dnf -y remove dracut --noautoremove && dnf -y update && dnf clean all