From f46da595e22a4d547636db4e66d23cadbed164ee Mon Sep 17 00:00:00 2001 From: Ben Callaghan Date: Thu, 2 Feb 2017 01:01:33 -0700 Subject: [PATCH] Upgraded the base Ubuntu image to the latest LTS --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9b0fb0..5c0df1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,8 @@ -#use 32-bit ubuntu 12.04 required by valgrind. 64-bit has some known issues -from shawn/ubuntu-precise-i386 +from docker/ubuntu:16.04 MAINTAINER David Liu LABEL Description="Do your C/C++ development in Docker container. Based on Ubuntu, and added build-essential and valgrind so you can use g++/gcc/gdb/valgrind." - #adds gcc valgrind run apt-get install -y build-essential valgrind