Install build-essential on trusty

Remove the burden of installing build-essential tools on dox.yml files
by installing it in the base image. Most of the projects will need this
package installed, anyway.
This commit is contained in:
Flavio Percoco 2014-09-06 11:44:55 +02:00
parent 5d335dcff2
commit cdd3394275
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM ubuntu:trusty
MAINTAINER OpenStack <openstack-dev@lists.openstack.org>
RUN apt-get update
RUN apt-get install -y wget git python
RUN apt-get install -y build-essential wget git python
RUN wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py && rm get-pip.py
RUN pip install -U setuptools