From fb90a4ac2cdaf3b474295c751fac0b4c4ac88334 Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Wed, 9 May 2018 07:41:59 -0700 Subject: [PATCH] Update init Docker image to Ubuntu 16.04 Include python-setuptools package and organize package list Change-Id: Ie391a410af309d08d4c9b1a4540ad1389a5548fe Signed-off-by: Trevor Bramwell --- init/Dockerfile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/init/Dockerfile b/init/Dockerfile index 437a759..8f19b38 100644 --- a/init/Dockerfile +++ b/init/Dockerfile @@ -8,13 +8,20 @@ # http://www.eclipse.org/legal/epl-v10.html ############################################################################## -FROM ubuntu:14.04 +FROM ubuntu:16.04 RUN DEBIAN_FRONTEND=noninteractive \ apt-get update -qq \ && apt-get install --no-install-recommends -y \ - curl git python python-pip python-dev libyaml-dev \ - realpath openssh-client \ + curl \ + git \ + libyaml-dev \ + openssh-client \ + python \ + python-dev \ + python-pip \ + python-setuptools \ + realpath \ && rm -rf /var/lib/apt/lists/* RUN mkdir /docker-entrypoint-init.d/ -- 2.16.6