Skip to content
Snippets Groups Projects
Commit 72335cae authored by Paul Bourke's avatar Paul Bourke
Browse files

Add base image for oraclelinux

This patch provides the basis for an alternate set of images to be
available in Kolla, based on oraclelinux.

It is difficult ahead of time to know all base dependencies and exactly
which repos they'll come from, so at this time I have just added the bare
minimum.

In the next commit keystone will require some essentials that will
likely make sense to add here.

NOTE: To build this image you must set the following .buildconf in the
root of the kolla repo:

cat >> .buildconf << EOF
PREFIX=ol-binary-
EOF

Partially implements: blueprint add-optional-oraclelinux-images

Change-Id: I1ccce8eebe8fa0d4342af2aa482c083d074bda66
parent cee4555e
No related branches found
No related tags found
No related merge requests found
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 service_hosts.sh kolla-common.sh /opt/kolla/
../../../../tools/build-docker-image
\ No newline at end of file
../../../common/base/kolla-common.sh
\ No newline at end of file
../../../common/base/service_hosts.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment