From ae6b36fa89302ac069de3dd84603a1a7e87cf278 Mon Sep 17 00:00:00 2001 From: Christoph Christen Date: Tue, 2 Jan 2018 21:05:49 +0100 Subject: [PATCH] Updated docker baseimage --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b832b72..fe7e11e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:14.04 +FROM ubuntu:16.04 RUN apt-get update \ && apt-get install -y -q --no-install-recommends \ @@ -7,8 +7,9 @@ RUN apt-get update \ libssl-dev \ python-dev \ python-setuptools \ - && sudo easy_install pip \ - && sudo pip install --upgrade setuptools \ + ca-certificates \ + && easy_install pip \ + && pip install --upgrade setuptools \ && apt-get clean \ && rm -r /var/lib/apt/lists/*