summaryrefslogtreecommitdiff
path: root/ci/containers/ci-centos-7.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'ci/containers/ci-centos-7.Dockerfile')
-rw-r--r--ci/containers/ci-centos-7.Dockerfile59
1 files changed, 0 insertions, 59 deletions
diff --git a/ci/containers/ci-centos-7.Dockerfile b/ci/containers/ci-centos-7.Dockerfile
deleted file mode 100644
index bfd2e8d..0000000
--- a/ci/containers/ci-centos-7.Dockerfile
+++ /dev/null
@@ -1,59 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool dockerfile centos-7 osinfo-db-tools,osinfo-db,libosinfo
-#
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/b098ec6631a85880f818f2dd25c437d509e53680
-FROM registry.centos.org/centos:7
-
-RUN yum update -y && \
- echo 'skip_missing_names_on_install=0' >> /etc/yum.conf && \
- yum install -y epel-release && \
- yum install -y \
- ca-certificates \
- ccache \
- check-devel \
- gcc \
- gettext \
- git \
- glib2-devel \
- glibc-common \
- gobject-introspection-devel \
- gtk-doc \
- hwdata \
- intltool \
- itstool \
- json-glib-devel \
- libarchive-devel \
- libsoup-devel \
- libxml2 \
- libxml2-devel \
- libxslt-devel \
- make \
- ninja-build \
- pkgconfig \
- python3 \
- python3-pip \
- python3-setuptools \
- python3-wheel \
- python36-lxml \
- python36-pytest \
- python36-requests \
- rpm-build \
- vala \
- wget \
- xz && \
- yum autoremove -y && \
- yum clean all -y && \
- rpm -qa | sort > /packages.txt && \
- 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)
-
-RUN pip3 install \
- meson==0.54.0
-
-ENV LANG "en_US.UTF-8"
-ENV MAKE "/usr/bin/make"
-ENV NINJA "/usr/bin/ninja-build"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"