mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-08 14:29:56 +00:00
126 lines
3.5 KiB
Docker
126 lines
3.5 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 \
|
||
|
iproute2 \
|
||
|
kmod \
|
||
|
libc-dev-bin \
|
||
|
libtool \
|
||
|
libtool-bin \
|
||
|
libxml2-utils \
|
||
|
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 \
|
||
|
vim \
|
||
|
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/arm-linux-gnueabihf-cc && \
|
||
|
ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/arm-linux-gnueabihf-$(basename /usr/bin/gcc)
|
||
|
|
||
|
RUN export DEBIAN_FRONTEND=noninteractive && \
|
||
|
dpkg --add-architecture armhf && \
|
||
|
apt-get update && \
|
||
|
apt-get dist-upgrade -y && \
|
||
|
apt-get install --no-install-recommends -y dpkg-dev && \
|
||
|
apt-get install --no-install-recommends -y \
|
||
|
gcc-arm-linux-gnueabihf \
|
||
|
glusterfs-common:armhf \
|
||
|
libacl1-dev:armhf \
|
||
|
libapparmor-dev:armhf \
|
||
|
libattr1-dev:armhf \
|
||
|
libaudit-dev:armhf \
|
||
|
libavahi-client-dev:armhf \
|
||
|
libblkid-dev:armhf \
|
||
|
libc6-dev:armhf \
|
||
|
libcap-ng-dev:armhf \
|
||
|
libcurl4-gnutls-dev:armhf \
|
||
|
libdbus-1-dev:armhf \
|
||
|
libdevmapper-dev:armhf \
|
||
|
libfuse-dev:armhf \
|
||
|
libglib2.0-dev:armhf \
|
||
|
libgnutls28-dev:armhf \
|
||
|
libiscsi-dev:armhf \
|
||
|
libncurses5-dev:armhf \
|
||
|
libnl-3-dev:armhf \
|
||
|
libnl-route-3-dev:armhf \
|
||
|
libparted-dev:armhf \
|
||
|
libpcap0.8-dev:armhf \
|
||
|
libpciaccess-dev:armhf \
|
||
|
librbd-dev:armhf \
|
||
|
libreadline-dev:armhf \
|
||
|
libsanlock-dev:armhf \
|
||
|
libsasl2-dev:armhf \
|
||
|
libselinux1-dev:armhf \
|
||
|
libssh-gcrypt-dev:armhf \
|
||
|
libssh2-1-dev:armhf \
|
||
|
libtirpc-dev:armhf \
|
||
|
libudev-dev:armhf \
|
||
|
libxen-dev:armhf \
|
||
|
libxml2-dev:armhf \
|
||
|
libyajl-dev:armhf \
|
||
|
xfslibs-dev:armhf && \
|
||
|
apt-get autoremove -y && \
|
||
|
apt-get autoclean -y
|
||
|
|
||
|
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"
|
||
|
|
||
|
ENV ABI "arm-linux-gnueabihf"
|
||
|
ENV CONFIGURE_OPTS "--host=arm-linux-gnueabihf"
|