From c31f24edaeae8c39750ce4be157ecf7d1a6cbcad Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Fri, 5 Apr 2024 10:11:09 -0400 Subject: [PATCH] add -y to apt-get upgrade --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c17c0e0..e4c3874 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,7 +101,7 @@ RUN \ > /run/systemd/container && \ echo "**** install apt-utils and locales ****" && \ apt-get update && \ - apt-get upgrade && \ + apt-get upgrade -y && \ apt-get install -y \ apt-utils \ locales && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ee19e0b..0080b92 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -101,7 +101,7 @@ RUN \ > /run/systemd/container && \ echo "**** install apt-utils and locales ****" && \ apt-get update && \ - apt-get upgrade && \ + apt-get upgrade -y && \ apt-get install -y \ apt-utils \ locales && \