From 1c60a6a4433260f1bc0f3795cd8b7cbacd1e8083 Mon Sep 17 00:00:00 2001 From: Chris Fiege Date: Mon, 22 Jan 2024 09:28:41 +0100 Subject: [PATCH] meta-lxatac-software/containers: Update to debian:latest This effectively bumps the Debian version to the most recent release at that time. This way we will not need to update the script with every Debian release. This also aligns the behavior with `container-start.sh` that simply pulls `debian` if no container is present. And this also defaults to `latest`. Signed-off-by: Chris Fiege --- .../recipes-devtools/containers/files/container-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-lxatac-software/recipes-devtools/containers/files/container-update.sh b/meta-lxatac-software/recipes-devtools/containers/files/container-update.sh index 30921370..d65c3dea 100644 --- a/meta-lxatac-software/recipes-devtools/containers/files/container-update.sh +++ b/meta-lxatac-software/recipes-devtools/containers/files/container-update.sh @@ -21,6 +21,6 @@ else exit 2 fi -podman pull debian:bullseye +podman pull debian:latest exit 0