Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion os/image/kernel-builder/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cp "$archive" "$context/kernel-devel.tar.gz"

${DOCKER:-docker} build \
--file "$SELF/Dockerfile" \
--build-arg "BASE_IMAGE=debian:$DEBIAN_RELEASE-slim" \
--build-arg "BASE_IMAGE=$DEBIAN_BASE_IMAGE" \
--build-arg "DEBIAN_SNAPSHOT=$DEBIAN_SNAPSHOT" \
--build-arg "KERNEL_RELEASE=$KERNEL_VERSION-dstack" \
--build-arg "IMAGE_VERSION=${IMAGE_VERSION:-$DSTACK_VERSION}" \
Expand Down
3 changes: 3 additions & 0 deletions os/mkosi/versions.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ KERNEL_VERSION=6.18.40
KERNEL_SHA256=3712fc1ec839e4daac981176c8518912e8f452650aaedfe4381da4419613a431
DEBIAN_RELEASE=trixie
DEBIAN_SNAPSHOT=20260721T000000Z
# Base of the kernel module builder image. It must predate DEBIAN_SNAPSHOT:
# apt pinned to the snapshot cannot downgrade packages the base already ships.
DEBIAN_BASE_IMAGE=debian:trixie-20260713-slim@sha256:020c0d20b9880058cbe785a9db107156c3c75c2ac944a6aa7ab59f2add76a7bd
MKOSI_VERSION=26
# mkosi constructs the image, so it is part of the build toolchain and a
# reproducibility input in its own right. The major version above is what
Expand Down
Loading