Add ubuntu-xenial docker image

Change-Id: I8cc2229b2b4b3ef01b1d4992232255367b7c251f
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-04-27 15:17:55 -04:00
parent 9bc1b0368e
commit a842b2db46
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
2 changed files with 9 additions and 1 deletions

View File

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

View File

@ -20,7 +20,7 @@ if [ $(id -gn) != ${GROUP} ]; then
fi
### Build image with docker
IMAGES="infra/centos7 infra/trusty"
IMAGES="infra/centos7 infra/trusty infra/xenial"
for IMAGE in $IMAGES; do
docker build dockerfiles/$IMAGE -t $IMAGE
done