virt-viewer/ci/debian-sid.Dockerfile
Daniel P. Berrangé 27ea968c70 gitlab: introduce CI jobs for building on multiple distros
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2020-05-22 12:22:00 +01:00

74 lines
1.9 KiB
Docker

FROM debian:sid
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get dist-upgrade -y && \
apt-get install --no-install-recommends -y \
autoconf \
automake \
autopoint \
bash \
bash-completion \
ca-certificates \
ccache \
chrony \
gcc \
gdb \
gettext \
git \
gtk-doc-tools \
intltool \
libc-dev-bin \
libc6-dev \
libgcrypt20-dev \
libgdk-pixbuf2.0-dev \
libgirepository1.0-dev \
libglib2.0-dev \
libgnutls28-dev \
libgovirt-dev \
libgtk-3-dev \
libnl-3-dev \
libnl-route-3-dev \
libpulse-dev \
libsasl2-dev \
libspice-client-gtk-3.0-dev \
libtirpc-dev \
libtool \
libtool-bin \
libxml2-dev \
libxml2-utils \
locales \
lsof \
make \
meson \
net-tools \
ninja-build \
patch \
perl \
pkgconf \
python3 \
python3-docutils \
python3-setuptools \
python3-wheel \
screen \
strace \
sudo \
valac \
vim \
xsltproc && \
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)
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"