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