91026e78bf
gnocchi-base requires the gcc c++ compiler to build panda, whatever that is. Change-Id: Icb4519cf4881390f6958324eb14fb0009fca336e Paritally-Implements: blueprint gate-source-builds
39 lines
748 B
Docker
39 lines
748 B
Docker
FROM centos
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
# Dependencies required for building/installing source components
|
|
RUN yum install -y \
|
|
epel-release \
|
|
gcc \
|
|
gcc-c++ \
|
|
git \
|
|
libffi-devel \
|
|
libxml2-devel \
|
|
libxslt-devel \
|
|
mariadb \
|
|
mariadb-devel \
|
|
mysql-devel \
|
|
MySQL-python \
|
|
openldap-devel \
|
|
openssl \
|
|
openssl-devel \
|
|
postgresql \
|
|
postgresql-devel \
|
|
python-devel \
|
|
python-oslo-policy \
|
|
sqlite-devel \
|
|
tar \
|
|
&& yum clean all
|
|
|
|
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
|
|
&& python get-pip.py \
|
|
&& rm get-pip.py
|
|
|
|
RUN pip install --upgrade \
|
|
cachetools \
|
|
crudini \
|
|
pip \
|
|
tox
|
|
|
|
COPY kolla-common.sh /opt/kolla/
|