Merge "Add base image for Ubuntu"

This commit is contained in:
Jenkins 2015-06-30 14:39:50 +00:00 committed by Gerrit Code Review
commit 6e81e4829e
4 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,15 @@
FROM ubuntu:trusty
MAINTAINER Kolla Project (https://launchpad.net/kolla)
RUN apt-get update \
&& apt-get install -y 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 \
crudini \
openssl \
&& apt-get clean
COPY service_hosts.sh kolla-common.sh /opt/kolla/

View File

@ -0,0 +1 @@
../../../../tools/build-docker-image

View File

@ -0,0 +1 @@
../../../common/base/kolla-common.sh

View File

@ -0,0 +1 @@
../../../common/base/service_hosts.sh