From af910c98c200511725d84d01cee36ffc0063e366 Mon Sep 17 00:00:00 2001 From: AtomicFS Date: Mon, 20 Jan 2025 15:26:26 +0100 Subject: [PATCH] chore(docker): bump coreboot docker containers from jammy to noble Signed-off-by: AtomicFS --- docker/compose.yaml | 12 ++++++------ docker/coreboot/Dockerfile | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docker/compose.yaml b/docker/compose.yaml index 4a52ed08..2fb3288e 100644 --- a/docker/compose.yaml +++ b/docker/compose.yaml @@ -7,37 +7,37 @@ services: context: coreboot args: - COREBOOT_VERSION=4.19 - - SOURCE_IMAGE=ubuntu:jammy + - SOURCE_IMAGE=ubuntu:noble coreboot_4.20.1: build: context: coreboot args: - COREBOOT_VERSION=4.20.1 - - SOURCE_IMAGE=ubuntu:jammy + - SOURCE_IMAGE=ubuntu:noble coreboot_4.21: build: context: coreboot args: - COREBOOT_VERSION=4.21 - - SOURCE_IMAGE=ubuntu:jammy + - SOURCE_IMAGE=ubuntu:noble coreboot_4.22.01: build: context: coreboot args: - COREBOOT_VERSION=4.22.01 - - SOURCE_IMAGE=ubuntu:jammy + - SOURCE_IMAGE=ubuntu:noble coreboot_24.02.01: build: context: coreboot args: - COREBOOT_VERSION=24.02.01 - - SOURCE_IMAGE=ubuntu:jammy + - SOURCE_IMAGE=ubuntu:noble coreboot_24.05: build: context: coreboot args: - COREBOOT_VERSION=24.05 - - SOURCE_IMAGE=ubuntu:jammy + - SOURCE_IMAGE=ubuntu:noble #================== # edk2 #================== diff --git a/docker/coreboot/Dockerfile b/docker/coreboot/Dockerfile index b381b072..fc33a9f7 100644 --- a/docker/coreboot/Dockerfile +++ b/docker/coreboot/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH=amd64 #============= # "base" stage with all needed build dependencies -ARG SOURCE_IMAGE=ubuntu:jammy +ARG SOURCE_IMAGE=ubuntu:noble FROM ${SOURCE_IMAGE} AS base ARG TARGETARCH