Update container

- Update image to debian:bookworm-20250520-slim
- Update coreboot to 25.03
- Use repo commit as tag

Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
Tim Crawford 2025-06-25 09:30:46 -06:00
parent d5e14a914e
commit 4cb137e917
No known key found for this signature in database
GPG key ID: 68E558D2BBD856E3
2 changed files with 4 additions and 5 deletions

View file

@ -11,8 +11,7 @@ MAKEFLAGS += --silent
endif
PODMAN := $(shell command -v podman)
CONTAINER_TAG := latest
CONTAINER_TAG := $(shell git describe --always --abbrev=12)
.PHONY: firmware-open
firmware-open:

View file

@ -2,10 +2,10 @@
# NOTE: The repository is specified in the image name to make it explicit
# which source is being trusted to provide the image.
ARG CONTAINER_IMAGE="docker.io/library/debian:bookworm-20241016-slim"
ARG CONTAINER_IMAGE="docker.io/library/debian:bookworm-20250520-slim"
ARG COREBOOT_REPO="https://github.com/coreboot/coreboot.git"
ARG COREBOOT_COMMIT="24.08"
ARG COREBOOT_COMMIT="25.03"
ARG SDCC_REPO="https://svn.code.sf.net/p/sdcc/code"
ARG SDCC_REV="14648"
@ -157,7 +157,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
| sh -s -- -y --default-toolchain stable
# XXX: rustup 1.27 does not recognize toolchain if preceding option specifies
# a comma seprates list as an argument with a space.
# a comma separated list as an argument with a space.
# Ref: https://github.com/rust-lang/rustup/issues/4073
RUN . "${HOME}/.cargo/env" \
&& rustup toolchain install \