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:
parent
c49a760567
commit
18c8c1e211
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
RUN apt update && apt install -y sudo
|
RUN apt update -y && apt install -y sudo
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
groupadd dev && \
|
groupadd dev && \
|
||||||
|
Loading…
Reference in New Issue
Block a user