From 0eafc43f41e33ec49afa3de56859fad087d1a693 Mon Sep 17 00:00:00 2001 From: Rouven Himmelstein Date: Wed, 24 Jan 2024 13:55:32 +0100 Subject: [PATCH] feat: remove dist-upgrade as it upgrades major versions --- container-data/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-data/Containerfile b/container-data/Containerfile index e9411d8..c0e3d43 100644 --- a/container-data/Containerfile +++ b/container-data/Containerfile @@ -21,7 +21,7 @@ RUN apt update && \ RUN dpkg --add-architecture i386 && \ apt update && \ apt install -y --no-install-recommends wine wine32 wine64 winbind xvfb && \ - apt upgrade -y && apt dist-upgrade -y + apt upgrade -y # Cleanup, remove wget RUN apt remove -y wget && \