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
This commit is contained in:
Chris Hoge 2018-04-03 14:58:39 -07:00
parent c49a760567
commit 18c8c1e211
1 changed files with 1 additions and 1 deletions

View File

@ -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 && \