fd92ad8a27
* Remove service_hosts.sh file * Add all the required variables to tools/genenv Change-Id: I23954bf148923fbe785f51012fc9c9da909fa380 Closes-Bug: #1447867
17 lines
465 B
Docker
17 lines
465 B
Docker
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 \
|
|
openssl \
|
|
&& apt-get clean
|
|
|
|
COPY kolla-common.sh /opt/kolla/
|