a0f67f67df
No need to do a make dir since COPY will create it. Also removed from service specific base images since it will not be required. Change-Id: I15064eaf6e8faa9acbda68eaf3d85589ea9ed3d9 Closes-Bug: #1479176
40 lines
922 B
Docker
40 lines
922 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 service_hosts.sh kolla-common.sh /opt/kolla/
|