2020-06-02 15:28:57 +00:00
|
|
|
FROM centos:8
|
|
|
|
|
|
|
|
RUN dnf install -y centos-release-stream && \
|
|
|
|
dnf install 'dnf-command(config-manager)' -y && \
|
|
|
|
dnf config-manager --set-enabled -y Stream-PowerTools && \
|
|
|
|
dnf install -y epel-release && \
|
|
|
|
dnf update -y && \
|
|
|
|
dnf install -y \
|
|
|
|
audit-libs-devel \
|
|
|
|
augeas \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
avahi-devel \
|
|
|
|
bash \
|
|
|
|
bash-completion \
|
|
|
|
ca-certificates \
|
|
|
|
ccache \
|
|
|
|
chrony \
|
2020-07-28 12:24:27 +00:00
|
|
|
clang \
|
2020-06-02 15:28:57 +00:00
|
|
|
cyrus-sasl-devel \
|
|
|
|
dbus-devel \
|
|
|
|
device-mapper-devel \
|
|
|
|
dnsmasq \
|
|
|
|
dwarves \
|
|
|
|
ebtables \
|
2020-10-08 13:26:12 +00:00
|
|
|
firewalld-filesystem \
|
2020-06-02 15:28:57 +00:00
|
|
|
fuse-devel \
|
|
|
|
gcc \
|
|
|
|
gdb \
|
|
|
|
gettext \
|
|
|
|
gettext-devel \
|
|
|
|
git \
|
|
|
|
glib2-devel \
|
|
|
|
glibc-devel \
|
|
|
|
glibc-langpack-en \
|
|
|
|
glusterfs-api-devel \
|
|
|
|
gnutls-devel \
|
|
|
|
iproute \
|
|
|
|
iproute-tc \
|
|
|
|
iscsi-initiator-utils \
|
|
|
|
kmod \
|
|
|
|
libacl-devel \
|
|
|
|
libattr-devel \
|
|
|
|
libblkid-devel \
|
|
|
|
libcap-ng-devel \
|
|
|
|
libcurl-devel \
|
|
|
|
libiscsi-devel \
|
|
|
|
libnl3-devel \
|
|
|
|
libpcap-devel \
|
|
|
|
libpciaccess-devel \
|
|
|
|
librbd-devel \
|
|
|
|
libselinux-devel \
|
|
|
|
libssh-devel \
|
|
|
|
libssh2-devel \
|
|
|
|
libtirpc-devel \
|
|
|
|
libtool \
|
|
|
|
libudev-devel \
|
|
|
|
libwsman-devel \
|
|
|
|
libxml2 \
|
|
|
|
libxml2-devel \
|
|
|
|
libxslt \
|
|
|
|
lsof \
|
|
|
|
lvm2 \
|
|
|
|
make \
|
|
|
|
net-tools \
|
|
|
|
netcf-devel \
|
|
|
|
nfs-utils \
|
|
|
|
ninja-build \
|
|
|
|
numactl-devel \
|
|
|
|
numad \
|
|
|
|
parted \
|
|
|
|
parted-devel \
|
|
|
|
patch \
|
|
|
|
perl \
|
2020-07-14 09:45:01 +00:00
|
|
|
perl-App-cpanminus \
|
2020-06-02 15:28:57 +00:00
|
|
|
pkgconfig \
|
|
|
|
polkit \
|
|
|
|
python3 \
|
|
|
|
python3-docutils \
|
|
|
|
python3-flake8 \
|
2020-06-25 12:28:25 +00:00
|
|
|
python3-pip \
|
2020-06-02 15:28:57 +00:00
|
|
|
python3-setuptools \
|
|
|
|
python3-wheel \
|
|
|
|
qemu-img \
|
|
|
|
radvd \
|
|
|
|
readline-devel \
|
|
|
|
rpcgen \
|
|
|
|
rpm-build \
|
|
|
|
sanlock-devel \
|
|
|
|
screen \
|
|
|
|
scrub \
|
|
|
|
strace \
|
|
|
|
sudo \
|
|
|
|
systemtap-sdt-devel \
|
|
|
|
vim \
|
|
|
|
wireshark-devel \
|
|
|
|
xfsprogs-devel \
|
2020-07-14 09:45:01 +00:00
|
|
|
xz \
|
2020-06-02 15:28:57 +00:00
|
|
|
yajl-devel && \
|
|
|
|
dnf autoremove -y && \
|
|
|
|
dnf clean all -y && \
|
|
|
|
mkdir -p /usr/libexec/ccache-wrappers && \
|
|
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
|
|
|
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/$(basename /usr/bin/gcc)
|
|
|
|
|
2020-08-03 06:53:00 +00:00
|
|
|
RUN pip3 install \
|
|
|
|
meson==0.54.0
|
|
|
|
|
2020-06-02 15:28:57 +00:00
|
|
|
ENV LANG "en_US.UTF-8"
|
|
|
|
|
|
|
|
ENV MAKE "/usr/bin/make"
|
|
|
|
ENV NINJA "/usr/bin/ninja"
|
|
|
|
ENV PYTHON "/usr/bin/python3"
|
|
|
|
|
|
|
|
ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
|