Skip to content
Snippets Groups Projects
Commit 70de5421 authored by Michal Rostecki's avatar Michal Rostecki
Browse files

Add base image for Ubuntu

Minimal base image with Ubuntu Cloud Archive repository.
More dependencies may be added during implementing the
other images.

NOTE: To build this image with proper name:

./build --prefix ubuntu-binary-

You can also configure the prefix globally:

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

Partially implements: blueprint install-from-ubuntu

Change-Id: I66bf97b508b740f8db49ed6217c6fefe5de1637e
parent 62e02fdb
No related branches found
No related tags found
No related merge requests found
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/
../../../../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