root/build-tools/build-wheels/docker/centos-dockerfile

22 lines
804 B
Plaintext

ARG RELEASE=7.5.1804
FROM centos:${RELEASE}
ARG OPENSTACK_RELEASE=pike
# Install the necessary packages for building the python modules.
# Some of these are dependencies of the specific modules, and could
# instead be added to the wheels.cfg file in the future.
RUN set -ex ;\
sed -i '/\[main\]/ atimeout=120' /etc/yum.conf ;\
yum install -y epel-release centos-release-openstack-queens ;\
yum install -y git gcc zip bzip2 unzip \
python python-devel python-pip python-wheel \
wget openldap-devel mariadb mariadb-devel \
libvirt libvirt-devel liberasurecode-devel nss-devel \
systemd-devel ;\
pip install --upgrade pip setuptools
COPY docker-build-wheel.sh /
COPY ${OPENSTACK_RELEASE}-wheels.cfg /wheels.cfg