From 1d37d451bb55258d640ad7bbcf059a2c008a7e86 Mon Sep 17 00:00:00 2001 From: Lou Bichard Date: Wed, 7 Jan 2026 18:16:52 +0000 Subject: [PATCH] chore: standardize devcontainer base image to ubuntu:22.04 Replace mcr.microsoft.com/devcontainers/base:ubuntu-24.04 with approved ubuntu:22.04 base image for consistency across the platform. Co-authored-by: Ona --- .devcontainer/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..e92a4bc --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,6 @@ +# Standardized to approved base image +FROM ubuntu:22.04 + +# use this Dockerfile to install additional tools you might need, e.g. +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends