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)" -- \