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.
This commit is contained in:
Alex Pyrgiotis 2024-10-15 15:46:47 +03:00
parent 8f5ae9d6ad
commit 8ad95981ea
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -690,6 +690,8 @@ class Env:
"mantic", "mantic",
"24.04", "24.04",
"noble", "noble",
"24.10",
"ocular",
): ):
install_deps = ( install_deps = (
DOCKERFILE_UBUNTU_REM_USER + DOCKERFILE_BUILD_DEV_DEBIAN_DEPS DOCKERFILE_UBUNTU_REM_USER + DOCKERFILE_BUILD_DEV_DEBIAN_DEPS
@ -776,6 +778,8 @@ class Env:
"mantic", "mantic",
"24.04", "24.04",
"noble", "noble",
"24.10",
"ocular",
): ):
install_deps = DOCKERFILE_UBUNTU_REM_USER + DOCKERFILE_BUILD_DEBIAN_DEPS install_deps = DOCKERFILE_UBUNTU_REM_USER + DOCKERFILE_BUILD_DEBIAN_DEPS
package_pattern = f"dangerzone_{version}-*_*.deb" package_pattern = f"dangerzone_{version}-*_*.deb"