From 03c2479d5d83036e56c117b4c26655b34593ba44 Mon Sep 17 00:00:00 2001 From: Justin Paul Date: Mon, 28 Sep 2020 12:57:19 -0400 Subject: [PATCH] Update Dockerfile Need to add the "yes" flag to the apt upgrade command so that it will actually install the updates. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb5db484b..4938cbef4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:18.04 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get -q update && \ - apt-get -q upgrade && \ + apt-get -qy upgrade && \ apt-get install -qy screen time sudo unzip software-properties-common nano git make automake build-essential pkg-config libevent-dev libncurses5-dev fonts-powerline powerline mariadb-client libmysqlclient-dev unrar p7zip-full mediainfo lame ffmpeg && \ add-apt-repository ppa:ondrej/php && \ apt-get -q update && \