67c3c6b28a
With blueprint remove-config-internal we no longer require crux. Removing it from base images Dockerfiles Partially implements: blueprint remove-config-internal Change-Id: Iccddaf41945a69e78978288dc2012299b21bc9a9
26 lines
566 B
Docker
26 lines
566 B
Docker
FROM oraclelinux:7.1
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
# Dependencies required for building/installing source components
|
|
RUN yum install -y \
|
|
MySQL-python \
|
|
gcc \
|
|
git \
|
|
libffi-devel \
|
|
mariadb \
|
|
openssl \
|
|
openssl-devel \
|
|
python-devel \
|
|
tar \
|
|
&& yum clean all
|
|
|
|
# TODO(pbourke): replace pip below with rpms once available in Oracle
|
|
# repos
|
|
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
|
|
&& python get-pip.py \
|
|
&& rm get-pip.py
|
|
|
|
RUN pip install crudini
|
|
|
|
COPY kolla-common.sh /opt/kolla/
|