From 7a9503d75f645bfbc848adc86ea25f444ef80b51 Mon Sep 17 00:00:00 2001 From: Ben Callaghan Date: Thu, 2 Feb 2017 01:04:29 -0700 Subject: [PATCH] Forced a package refresh when first created --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 11d66ef..6c8af85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,9 @@ 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." +#update package files to ensure newest versions +run apt-get update + #adds gcc valgrind run apt-get install -y build-essential valgrind