Merge "Add --no-install-recommends option to Ubuntu image"

This commit is contained in:
Jenkins 2015-07-07 01:50:45 +00:00 committed by Gerrit Code Review
commit cf178ff7ea

View File

@ -2,12 +2,12 @@ FROM ubuntu:trusty
MAINTAINER Kolla Project (https://launchpad.net/kolla)
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& 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 \
&& apt-get install -y --no-install-recommends \
crudini \
openssl \
&& apt-get clean