From 8ad95981ea24c12cd8ed6fda9a677979dfa63838 Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Tue, 15 Oct 2024 15:46:47 +0300 Subject: [PATCH] dev_scripts: Add user fix for Ubuntu 24.10 It seems that the container image for Ubuntu 24.10 also ships with a default Ubuntu user with UID 1000, so we need to remove it when creating our dev environment. --- dev_scripts/env.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev_scripts/env.py b/dev_scripts/env.py index abc5a20..dc548a2 100755 --- a/dev_scripts/env.py +++ b/dev_scripts/env.py @@ -690,6 +690,8 @@ class Env: "mantic", "24.04", "noble", + "24.10", + "ocular", ): install_deps = ( DOCKERFILE_UBUNTU_REM_USER + DOCKERFILE_BUILD_DEV_DEBIAN_DEPS @@ -776,6 +778,8 @@ class Env: "mantic", "24.04", "noble", + "24.10", + "ocular", ): install_deps = DOCKERFILE_UBUNTU_REM_USER + DOCKERFILE_BUILD_DEBIAN_DEPS package_pattern = f"dangerzone_{version}-*_*.deb"