From f79e2e93b97576a270130f7c9a121083887db213 Mon Sep 17 00:00:00 2001 From: Peter Holloway Date: Wed, 24 Jun 2026 15:56:03 +0100 Subject: [PATCH] chore: Use Ubuntu 26.04 (resolute) for devcontainer --- template/Dockerfile.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/Dockerfile.jinja b/template/Dockerfile.jinja index 342d04c1..07e1ece7 100644 --- a/template/Dockerfile.jinja +++ b/template/Dockerfile.jinja @@ -1,6 +1,6 @@ # The devcontainer should use the developer target and run as root with podman # or docker with user namespaces. -FROM ghcr.io/diamondlightsource/ubuntu-devcontainer:noble AS developer +FROM ghcr.io/diamondlightsource/ubuntu-devcontainer:resolute AS developer # Add any system dependencies for the developer/build environment here RUN apt-get update -y && apt-get install -y --no-install-recommends \ @@ -47,7 +47,7 @@ CMD [ "while true; do sleep 30; done;" ] {% endif %} # The runtime stage copies the built venv into a runtime container -FROM ubuntu:noble AS runtime +FROM ubuntu:resolute AS runtime # Add apt-get system dependecies for runtime here if needed # RUN apt-get update -y && apt-get install -y --no-install-recommends \