From 18c8c1e211ae7e06060f52c9feafbf4dae35901b Mon Sep 17 00:00:00 2001 From: Chris Hoge Date: Tue, 3 Apr 2018 14:58:39 -0700 Subject: [PATCH] Fix the apt upgrade command in the Docker file apt update was being run without '-y', which was causing the update to fail trying to install out of date packages. This patch adds the `-y` and fixes the Docker build Change-Id: I1260bb7f0dbcf95378bcda9d449293d02fa9f200 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index b1dc650e..3db3b289 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:16.04 -RUN apt update && apt install -y sudo +RUN apt update -y && apt install -y sudo RUN \ groupadd dev && \