From c9f442a4f049ca0ba5ef878ea9cf5728bc2e0e41 Mon Sep 17 00:00:00 2001 From: Lou Bichard Date: Wed, 7 Jan 2026 18:15:01 +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 to align with platform standards. Co-authored-by: Ona --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8b75643..18b5310 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,5 @@ -FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04 +# Standardized to approved base image (ubuntu:22.04 instead of ubuntu-24.04 devcontainer base) +FROM ubuntu:22.04 # use this Dockerfile to install additional tools you might need, e.g. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \