fd92ad8a27
* Remove service_hosts.sh file * Add all the required variables to tools/genenv Change-Id: I23954bf148923fbe785f51012fc9c9da909fa380 Closes-Bug: #1447867
13 lines
327 B
Docker
13 lines
327 B
Docker
FROM oraclelinux:7.1
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum update -y \
|
|
&& yum install -y git \
|
|
&& yum clean all \
|
|
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
|
|
&& python get-pip.py \
|
|
&& rm -f get-pip.py \
|
|
&& pip install crudini
|
|
|
|
COPY kolla-common.sh /opt/kolla/
|