mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/virt-viewer
synced 2026-01-28 04:10:18 +00:00
This introduces Fedora 33 and removes some redundant packages. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
56 lines
1.5 KiB
Docker
56 lines
1.5 KiB
Docker
FROM docker.io/library/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 \
|
|
cpanminus \
|
|
gcc \
|
|
gettext \
|
|
git \
|
|
icoutils \
|
|
libc6-dev \
|
|
libglib2.0-dev \
|
|
libgovirt-dev \
|
|
libgtk-3-dev \
|
|
libgtk-vnc-2.0-dev \
|
|
librest-dev \
|
|
libspice-client-gtk-3.0-dev \
|
|
libtool \
|
|
libtool-bin \
|
|
libvirt-dev \
|
|
libvirt-glib-1.0-dev \
|
|
libxml2-dev \
|
|
libxml2-utils \
|
|
locales \
|
|
make \
|
|
patch \
|
|
perl \
|
|
pkgconf \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
python3-wheel && \
|
|
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"
|