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
This commit is contained in:
parent
62e02fdbf4
commit
70de542165
15
docker/ubuntu/binary/base/Dockerfile
Normal file
15
docker/ubuntu/binary/base/Dockerfile
Normal 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/
|
1
docker/ubuntu/binary/base/build
Symbolic link
1
docker/ubuntu/binary/base/build
Symbolic link
@ -0,0 +1 @@
|
||||
../../../../tools/build-docker-image
|
1
docker/ubuntu/binary/base/kolla-common.sh
Symbolic link
1
docker/ubuntu/binary/base/kolla-common.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../common/base/kolla-common.sh
|
1
docker/ubuntu/binary/base/service_hosts.sh
Symbolic link
1
docker/ubuntu/binary/base/service_hosts.sh
Symbolic link
@ -0,0 +1 @@
|
||||
../../../common/base/service_hosts.sh
|
Loading…
Reference in New Issue
Block a user