Skip to content

Commit fc9644b

Browse files
committed
Support x64 containers from arm64 host
1 parent 0c4c134 commit fc9644b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.devcontainer/test-alpine-x64-python/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/python:3.11-alpine
1+
FROM --platform=linux/amd64 python:3.11-alpine
22
RUN apk add gcc libc-dev linux-headers musl-dev zlib zlib-dev python3-dev curl
33
RUN python -m pip install ipykernel
44
RUN sh -c "$(curl -fsSL https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5/zsh-in-docker.sh)" -- \

.devcontainer/test-alpine-x64/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM amd64/alpine
1+
FROM --platform=linux/amd64 alpine
22
RUN apk add curl
33
RUN sh -c "$(curl -fsSL https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5/zsh-in-docker.sh)" -- \
44
-t powerlevel10k/powerlevel10k \

0 commit comments

Comments
 (0)