From bb18fc219a7e7db265976112817f57b1b9bf2adc Mon Sep 17 00:00:00 2001 From: Nils Dijk Date: Wed, 29 Jan 2025 17:32:07 +0100 Subject: [PATCH] fix cpanm installs on qemu arm64 --- .devcontainer/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 5805a3689..6034b951e 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -45,7 +45,9 @@ RUN apt update && apt install -y \ RUN sudo pip3 install pipenv pipenv-shebang -RUN cpanm install IPC::Run +# the --force flag is to suppress test failures when building an arm64 build on qemu +# to allow github actions to create a devcontainer version for the mac with apple silicon +RUN cpanm install --force IPC::Run RUN locale-gen en_US.UTF-8