From 31947efaf9a5a6b342623074ea7a4eda068dbc4f Mon Sep 17 00:00:00 2001 From: Don Jayamanne Date: Tue, 10 Dec 2024 10:03:00 +1100 Subject: [PATCH] Ensure we can run x64 on Apple Silicone --- .devcontainer/test-linux-x64-python/Dockerfile | 2 +- .devcontainer/test-linux-x64/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/test-linux-x64-python/Dockerfile b/.devcontainer/test-linux-x64-python/Dockerfile index 14f614d1013..e1aa821b424 100644 --- a/.devcontainer/test-linux-x64-python/Dockerfile +++ b/.devcontainer/test-linux-x64-python/Dockerfile @@ -1,4 +1,4 @@ -FROM amd64/ubuntu +FROM --platform=linux/amd64 ubuntu # Setup Python RUN apt-get update && apt-get install -y python3 python3-pip diff --git a/.devcontainer/test-linux-x64/Dockerfile b/.devcontainer/test-linux-x64/Dockerfile index de8d9326140..9e9b65f1fd9 100644 --- a/.devcontainer/test-linux-x64/Dockerfile +++ b/.devcontainer/test-linux-x64/Dockerfile @@ -1,4 +1,4 @@ -FROM amd64/ubuntu +FROM --platform=linux/amd64 ubuntu RUN apt-get update RUN apt install curl -y RUN sh -c "$(curl -fsSL https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5/zsh-in-docker.sh)" -- \