Yongfeng Du 12b70241ba Install git for ubuntu source base
git is required for installing neutron from source.

Change-Id: I7b9b9455f8ccc1c62dba54d60846143d4bd0a1ce
Closes-Bug: #1481560
2015-08-05 11:11:18 +08:00

41 lines
919 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 \
git \
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/