mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-08 22:39:56 +00:00
95abbdc432
Instead of using pre-built containers hosted on Quay, build containers as part of the GitLab CI pipeline and upload them to the GitLab container registry for later use. This will not significantly slow down builds, because containers are only rebuilt when the corresponding Dockerfile has been modified. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
117 lines
3.0 KiB
Docker
117 lines
3.0 KiB
Docker
FROM debian:9
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
|
apt-get update && \
|
|
apt-get dist-upgrade -y && \
|
|
apt-get install --no-install-recommends -y \
|
|
augeas-lenses \
|
|
augeas-tools \
|
|
autoconf \
|
|
automake \
|
|
autopoint \
|
|
bash \
|
|
bash-completion \
|
|
ca-certificates \
|
|
ccache \
|
|
chrony \
|
|
dnsmasq-base \
|
|
dwarves \
|
|
ebtables \
|
|
flake8 \
|
|
gcc \
|
|
gdb \
|
|
gettext \
|
|
git \
|
|
glusterfs-common \
|
|
iproute2 \
|
|
kmod \
|
|
libacl1-dev \
|
|
libapparmor-dev \
|
|
libattr1-dev \
|
|
libaudit-dev \
|
|
libavahi-client-dev \
|
|
libblkid-dev \
|
|
libc-dev-bin \
|
|
libc6-dev \
|
|
libcap-ng-dev \
|
|
libcurl4-gnutls-dev \
|
|
libdbus-1-dev \
|
|
libdevmapper-dev \
|
|
libfuse-dev \
|
|
libglib2.0-dev \
|
|
libgnutls28-dev \
|
|
libiscsi-dev \
|
|
libncurses5-dev \
|
|
libnetcf-dev \
|
|
libnl-3-dev \
|
|
libnl-route-3-dev \
|
|
libnuma-dev \
|
|
libparted-dev \
|
|
libpcap0.8-dev \
|
|
libpciaccess-dev \
|
|
librbd-dev \
|
|
libreadline-dev \
|
|
libsanlock-dev \
|
|
libsasl2-dev \
|
|
libselinux1-dev \
|
|
libssh-gcrypt-dev \
|
|
libssh2-1-dev \
|
|
libtirpc-dev \
|
|
libtool \
|
|
libtool-bin \
|
|
libudev-dev \
|
|
libxen-dev \
|
|
libxml2-dev \
|
|
libxml2-utils \
|
|
libyajl-dev \
|
|
locales \
|
|
lsof \
|
|
lvm2 \
|
|
make \
|
|
net-tools \
|
|
nfs-common \
|
|
ninja-build \
|
|
numad \
|
|
open-iscsi \
|
|
parted \
|
|
patch \
|
|
perl \
|
|
pkgconf \
|
|
policykit-1 \
|
|
python3 \
|
|
python3-docutils \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
python3-wheel \
|
|
qemu-utils \
|
|
radvd \
|
|
screen \
|
|
scrub \
|
|
sheepdog \
|
|
strace \
|
|
sudo \
|
|
systemtap-sdt-dev \
|
|
vim \
|
|
wireshark-dev \
|
|
xfslibs-dev \
|
|
xsltproc \
|
|
zfs-fuse && \
|
|
apt-get autoremove -y && \
|
|
apt-get autoclean -y && \
|
|
sed -Ei 's,^# (en_US\.UTF-8 .*)$,\1,' /etc/locale.gen && \
|
|
dpkg-reconfigure locales && \
|
|
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)
|
|
|
|
RUN pip3 install \
|
|
meson==0.49.0
|
|
|
|
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"
|