From f7e920488846629ba4977063d43b37a544d653a1 Mon Sep 17 00:00:00 2001 From: Drake Evans <31104161+DrakeEvans@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:55:02 -0400 Subject: [PATCH] =?UTF-8?q?feat:=20use=20multi-architecture=20images=20in?= =?UTF-8?q?=20Dockerfile=20to=20support=20apple=20si=E2=80=A6=20(#8964)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feat: use multi-architecture images in Dockerfile to support apple silicon --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cbdf08b25846..87e52b70861c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,9 +30,9 @@ RUN --mount=type=cache,target=/root/.cargo/registry --mount=type=cache,target=/r && strip out/chisel \ && strip out/anvil; -FROM docker.io/frolvlad/alpine-glibc:alpine-3.16_glibc-2.34 as foundry-client +FROM alpine:3.18 as foundry-client -RUN apk add --no-cache linux-headers git +RUN apk add --no-cache linux-headers git gcompat libstdc++ COPY --from=build-environment /opt/foundry/out/forge /usr/local/bin/forge COPY --from=build-environment /opt/foundry/out/cast /usr/local/bin/cast