From ba23dac60a1cbad776261ee2fcb329b0e58d2d2e Mon Sep 17 00:00:00 2001 From: TheSpad Date: Tue, 19 Mar 2024 14:59:53 +0000 Subject: [PATCH] Run apt-upgrade during build --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8219691..e33d648 100644 --- a/Dockerfile +++ b/Dockerfile @@ -105,6 +105,7 @@ RUN \ > /run/systemd/container && \ echo "**** install apt-utils and locales ****" && \ apt-get update && \ + apt-get upgrade -y && \ apt-get install -y \ apt-utils \ locales && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index c788e0d..a38ee04 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -105,6 +105,7 @@ RUN \ > /run/systemd/container && \ echo "**** install apt-utils and locales ****" && \ apt-get update && \ + apt-get upgrade -y && \ apt-get install -y \ apt-utils \ locales && \