From f42d65267bb35e250c654573bddda5dbb64c5a8d Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Mon, 23 Feb 2026 08:30:20 +0100 Subject: [PATCH] Force devcontainer to use amd64 (human) --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 678fe0b..ff3e165 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,7 +7,7 @@ # - CMake + Ninja for the build system # - xorriso and mtools used internally by grub-mkrescue / grub-mkimage -FROM alpine:3.23 +FROM --platform=linux/amd64 alpine:3.23 RUN apk add --no-cache \ # Core build tools @@ -19,6 +19,7 @@ RUN apk add --no-cache \ git \ # GRUB image generation grub \ + grub-bios \ xorriso \ mtools \ # QEMU for running the OS