From fc6ad769a00cdae39895dd7ced2265a1c2501355 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Sat, 26 Mar 2016 17:36:52 +0000 Subject: [PATCH] add install line to make clear that APTLIST is to be used --- template/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/template/Dockerfile b/template/Dockerfile index 09afe48..e7e652a 100644 --- a/template/Dockerfile +++ b/template/Dockerfile @@ -6,6 +6,7 @@ ENV APTLIST="packages to install and update via apt" #Applying stuff RUN apt-get update -q && \ +apt-get install $APTLIST -qy && \ ##DO STUFF HERE ## END EACH LINE WITH && \ ## EXCEPT THE LINE BELOW