From 746125c291f7c8f7f40dc8201f3a6f0a4086500d Mon Sep 17 00:00:00 2001 From: Jafner <40403594+Jafner@users.noreply.github.com> Date: Sun, 1 Aug 2021 10:36:32 -0700 Subject: [PATCH] Added missing auto-yes flag for apt-get upgrade --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f7bdbf2..570e673 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM httpd COPY init.sh /init.sh RUN apt-get update && \ -apt-get upgrade && \ +apt-get -y upgrade && \ apt-get -y install curl p7zip-full WORKDIR /usr/local/apache2/htdocs/ RUN mkdir download