mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-21 18:03:43 +03:00
d8c329b024
Libvirt changed from using autotools to meson, so we need to adapt the GitLab CI recipe. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
64 lines
1.4 KiB
Docker
64 lines
1.4 KiB
Docker
FROM fedora:32
|
|
|
|
RUN dnf update -y && \
|
|
dnf install -y \
|
|
autoconf \
|
|
automake \
|
|
bash \
|
|
bash-completion \
|
|
ca-certificates \
|
|
ccache \
|
|
chrony \
|
|
cppi \
|
|
gcc \
|
|
gdb \
|
|
gettext \
|
|
gettext-devel \
|
|
git \
|
|
glib2-devel \
|
|
glibc-devel \
|
|
glibc-langpack-en \
|
|
gtk-vnc2-devel \
|
|
gtk3-devel \
|
|
icoutils \
|
|
libgovirt-devel \
|
|
libtool \
|
|
libvirt-devel \
|
|
libvirt-gobject-devel \
|
|
libxml2 \
|
|
libxml2-devel \
|
|
lsof \
|
|
make \
|
|
meson \
|
|
net-tools \
|
|
ninja-build \
|
|
patch \
|
|
perl \
|
|
perl-App-cpanminus \
|
|
pkgconfig \
|
|
python3 \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
python3-wheel \
|
|
rest-devel \
|
|
rpm-build \
|
|
screen \
|
|
spice-gtk3-devel \
|
|
strace \
|
|
sudo \
|
|
vim \
|
|
xz && \
|
|
dnf autoremove -y && \
|
|
dnf clean all -y && \
|
|
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"
|