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

Add source base image for oraclelinux

Partially implements: blueprint add-optional-oraclelinux-images

Change-Id: I6c350f16c0e394189efa851df3a84d6c6f5699ca
parent e7a7cc90
No related branches found
No related tags found
No related merge requests found
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 and crux 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
RUN curl https://codeload.github.com/larsks/crux/tar.gz/7 -o /crux-7.tar.gz \
&& tar -xf /crux-7.tar.gz \
&& pip install -r /crux-7/requirements.txt \
&& pip install /crux-7 \
&& rm -rf /crux-7.tar.gz /crux-7
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