From 3faf8df1342365c8e7bfd29bb872a5dd42ecc3a4 Mon Sep 17 00:00:00 2001 From: "Josh.5" Date: Mon, 4 Sep 2023 16:48:59 +1200 Subject: [PATCH] Add missing `xdg-utils` package This is required for better directory management when installing applications. We need its tools for installing icons etc. --- Dockerfile.debian | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index 2bfd1c2..cb7e0dd 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -266,11 +266,12 @@ RUN \ && \ echo "**** Install desktop environment ****" \ && apt-get install -y \ - xfce4 \ - xfce4-terminal \ - msttcorefonts \ fonts-vlgothic \ gedit \ + msttcorefonts \ + xdg-utils \ + xfce4 \ + xfce4-terminal \ # Delete these as they are not needed at all && rm -f \ /usr/share/applications/software-properties-drivers.desktop \