From e2106b618492c1e378ccb940594a1c45593eced4 Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Wed, 10 Jan 2024 16:54:09 -0800 Subject: [PATCH] Node: The prebuild Docker image only works as an x86_64 guest --- node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Dockerfile b/node/Dockerfile index 392f4933..f1ac03b5 100644 --- a/node/Dockerfile +++ b/node/Dockerfile @@ -4,7 +4,7 @@ # # Debian bullseye is the basis for Ubuntu 20.04. -FROM debian:bullseye-slim +FROM --platform=linux/amd64 debian:bullseye-slim # Install only what's needed to set up Rust and Node. # We'll install additional tools at the end to take advantage of Docker's caching of earlier steps.