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.Dockerfile35
1 files changed, 0 insertions, 35 deletions
diff --git a/ci/containers/ci-centos-7.Dockerfile b/ci/containers/ci-centos-7.Dockerfile
deleted file mode 100644
index f3ec402..0000000
--- a/ci/containers/ci-centos-7.Dockerfile
+++ /dev/null
@@ -1,35 +0,0 @@
-# THIS FILE WAS AUTO-GENERATED
-#
-# $ lcitool dockerfile centos-7 libvirt+dist,libvirt-python
-#
-# https://gitlab.com/libvirt/libvirt-ci/-/commit/12ad4d56d2d3a3c77ae957b2a49d34758fb3e614
-
-FROM docker.io/library/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 \
- gcc \
- git \
- glibc-common \
- libvirt-devel \
- pkgconfig \
- python3 \
- python3-setuptools \
- python36-devel \
- python36-lxml \
- python36-pytest \
- rpm-build && \
- 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/gcc
-
-ENV LANG "en_US.UTF-8"
-ENV PYTHON "/usr/bin/python3"
-ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"