From e804fc107d0f9b8ddfd1f8f3722607481845ccd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kalle=20M=C3=B8ller?= Date: Fri, 3 Feb 2017 12:40:43 +0100 Subject: [PATCH] Update common.debian I tried to build the image manually and failed due to apt-get asked for [y] in the install procedure. --- common.debian | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.debian b/common.debian index 2b7e8ab..8d6105d 100644 --- a/common.debian +++ b/common.debian @@ -3,7 +3,7 @@ RUN REPO=http://cdn-fastly.deb.debian.org && \ ARG DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get install \ +RUN apt-get update --yes && apt-get install --yes \ automake \ autogen \ bash \ @@ -32,4 +32,4 @@ RUN apt-get update && apt-get install \ wget \ runit \ xz-utils && \ - apt-get clean + apt-get clean --yes