From a4e90d4a795d29526b6f0bc5996f2584434b1554 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Tue, 19 Mar 2024 15:04:14 +0000 Subject: [PATCH] Run apt-get upgrade during build --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index dc0006f..3d07c78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,6 +108,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 f84c6ea..04343d0 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -108,6 +108,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 && \