From a842b2db463777eb109554e88e2962d02a37e029 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 27 Apr 2017 15:17:55 -0400 Subject: [PATCH] Add ubuntu-xenial docker image Change-Id: I8cc2229b2b4b3ef01b1d4992232255367b7c251f Signed-off-by: Paul Belanger --- dockerfiles/infra/xenial/Dockerfile | 8 ++++++++ tools/tarball.sh | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 dockerfiles/infra/xenial/Dockerfile diff --git a/dockerfiles/infra/xenial/Dockerfile b/dockerfiles/infra/xenial/Dockerfile new file mode 100644 index 0000000..ea0495e --- /dev/null +++ b/dockerfiles/infra/xenial/Dockerfile @@ -0,0 +1,8 @@ +FROM ubuntu:xenial +MAINTAINER OpenStack + +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 diff --git a/tools/tarball.sh b/tools/tarball.sh index 9004ea4..6d28eb6 100755 --- a/tools/tarball.sh +++ b/tools/tarball.sh @@ -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