From a5b30585e8ca831582fe30354da812f4163fbf6a Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Wed, 3 Jul 2024 03:55:58 +0200 Subject: [PATCH] [docker] Fix multi-arch builds --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a9d20eb7..f8224a4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,7 @@ RUN --mount=type=cache,target=/root/.nuget \ ARG TARGETPLATFORM ARG TARGETARCH +RUN ln -sf /bin/bash /bin/sh RUN --mount=type=cache,target=/root/.nuget \ if [[ "$BUILDPLATFORM" != "$TARGETPLATFORM" ]]; then \ dotnet restore -a $TARGETARCH -p:Configuration=Release -p:BundleNativeDeps=$VIPS -p:EnableLibVips=$VIPS; \