Files
kolla/docker/ubuntu/source/base/Dockerfile
Swapnil Kulkarni fd92ad8a27 Remove service_hosts.sh
* Remove service_hosts.sh file
* Add all the required variables to tools/genenv

Change-Id: I23954bf148923fbe785f51012fc9c9da909fa380
Closes-Bug: #1447867
2015-08-03 05:10:35 +00:00

40 lines
905 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 \
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
COPY kolla-common.sh /opt/kolla/