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 \ cpanminus \ gcc \ gdb \ 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 \ lsof \ make \ meson \ net-tools \ ninja-build \ patch \ perl \ pkgconf \ python3 \ python3-pip \ python3-setuptools \ python3-wheel \ screen \ strace \ sudo \ vim \ xz-utils && \ 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"