From efbc6be092ddea71a406da6deeb2b2c212d38c48 Mon Sep 17 00:00:00 2001 From: Swapnil Kulkarni Date: Tue, 28 Jul 2015 05:47:28 +0000 Subject: [PATCH] Add Ubuntu base image for build from source Change-Id: Iaf55ac615c992c95f71668c995b2330af6e17f69 Partially-implements: blueprint install-from-source --- docker/ubuntu/source/base/Dockerfile | 40 ++++++++++++++++++++++ docker/ubuntu/source/base/build | 1 + docker/ubuntu/source/base/kolla-common.sh | 1 + docker/ubuntu/source/base/service_hosts.sh | 1 + 4 files changed, 43 insertions(+) create mode 100644 docker/ubuntu/source/base/Dockerfile create mode 120000 docker/ubuntu/source/base/build create mode 120000 docker/ubuntu/source/base/kolla-common.sh create mode 120000 docker/ubuntu/source/base/service_hosts.sh diff --git a/docker/ubuntu/source/base/Dockerfile b/docker/ubuntu/source/base/Dockerfile new file mode 100644 index 0000000000..423d87473f --- /dev/null +++ b/docker/ubuntu/source/base/Dockerfile @@ -0,0 +1,40 @@ +FROM ubuntu:trusty +MAINTAINER Kolla Project (https://launchpad.net/kolla) + +RUN apt-get update \ + && apt-get install -y --no-install-recommends software-properties-common \ + && add-apt-repository cloud-archive:kilo \ + && apt-get update \ + && apt-get upgrade -y \ + && apt-get dist-upgrade -y \ + && apt-get install -y --no-install-recommends \ + crudini \ + curl \ + gcc \ + ldap-utils \ + libffi-dev \ + libxml2-dev \ + libxslt-dev \ + mysql-server\ + openssl \ + postgresql \ + python-dev \ + python-oslo-policy \ + slapd \ + sqlite \ + tar \ + && apt-get clean + +RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ + && python get-pip.py \ + && rm get-pip.py + +RUN pip install --upgrade \ + cachetools \ + crudini \ + crux \ + pip \ + tox + +RUN mkdir /opt/kolla +COPY service_hosts.sh kolla-common.sh /opt/kolla/ diff --git a/docker/ubuntu/source/base/build b/docker/ubuntu/source/base/build new file mode 120000 index 0000000000..8d652f7ee2 --- /dev/null +++ b/docker/ubuntu/source/base/build @@ -0,0 +1 @@ +../../../../tools/build-docker-image \ No newline at end of file diff --git a/docker/ubuntu/source/base/kolla-common.sh b/docker/ubuntu/source/base/kolla-common.sh new file mode 120000 index 0000000000..c265c62f7a --- /dev/null +++ b/docker/ubuntu/source/base/kolla-common.sh @@ -0,0 +1 @@ +../../../common/base/kolla-common.sh \ No newline at end of file diff --git a/docker/ubuntu/source/base/service_hosts.sh b/docker/ubuntu/source/base/service_hosts.sh new file mode 120000 index 0000000000..06e0454405 --- /dev/null +++ b/docker/ubuntu/source/base/service_hosts.sh @@ -0,0 +1 @@ +../../../common/base/service_hosts.sh \ No newline at end of file