From 7250fd22dc75b9fc203bd3bf6a8f8193297ccc6b Mon Sep 17 00:00:00 2001 From: Paul Bourke Date: Thu, 9 Jul 2015 12:00:45 +0000 Subject: [PATCH] Add source base image for oraclelinux Partially implements: blueprint add-optional-oraclelinux-images Change-Id: I6c350f16c0e394189efa851df3a84d6c6f5699ca --- docker/ol/source/base/Dockerfile | 31 ++++++++++++++++++++++++++ docker/ol/source/base/build | 1 + docker/ol/source/base/kolla-common.sh | 1 + docker/ol/source/base/service_hosts.sh | 1 + 4 files changed, 34 insertions(+) create mode 100644 docker/ol/source/base/Dockerfile create mode 120000 docker/ol/source/base/build create mode 120000 docker/ol/source/base/kolla-common.sh create mode 120000 docker/ol/source/base/service_hosts.sh diff --git a/docker/ol/source/base/Dockerfile b/docker/ol/source/base/Dockerfile new file mode 100644 index 0000000000..1dd76d39e7 --- /dev/null +++ b/docker/ol/source/base/Dockerfile @@ -0,0 +1,31 @@ +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/ diff --git a/docker/ol/source/base/build b/docker/ol/source/base/build new file mode 120000 index 0000000000..8d652f7ee2 --- /dev/null +++ b/docker/ol/source/base/build @@ -0,0 +1 @@ +../../../../tools/build-docker-image \ No newline at end of file diff --git a/docker/ol/source/base/kolla-common.sh b/docker/ol/source/base/kolla-common.sh new file mode 120000 index 0000000000..c265c62f7a --- /dev/null +++ b/docker/ol/source/base/kolla-common.sh @@ -0,0 +1 @@ +../../../common/base/kolla-common.sh \ No newline at end of file diff --git a/docker/ol/source/base/service_hosts.sh b/docker/ol/source/base/service_hosts.sh new file mode 120000 index 0000000000..06e0454405 --- /dev/null +++ b/docker/ol/source/base/service_hosts.sh @@ -0,0 +1 @@ +../../../common/base/service_hosts.sh \ No newline at end of file