kolla-ansible/docker/ol/source/base/Dockerfile
Swapnil Kulkarni 67c3c6b28a Remove crux from base Dockerfiles
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
2015-08-09 01:28:25 +00:00

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/