From cc6e5b92461fee46c128a2639a45111902e3f87d Mon Sep 17 00:00:00 2001 From: 242816 Date: Thu, 14 Nov 2024 14:39:26 +0100 Subject: [PATCH] fix: rustup target add aarch64-unknown-linux-musl --- dev-env-as-code/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-env-as-code/Dockerfile b/dev-env-as-code/Dockerfile index feb89a1b..f728ca69 100644 --- a/dev-env-as-code/Dockerfile +++ b/dev-env-as-code/Dockerfile @@ -123,6 +123,7 @@ RUN apt-get -y update \ && rustup component add rustfmt clippy \ # Add the musl toolchain && rustup target add x86_64-unknown-linux-musl \ + && rustup target add aarch64-unknown-linux-musl \ && rustup target add wasm32-unknown-unknown \ # Database migrations && curl -OL https://github.com/amacneil/dbmate/releases/download/v$DBMATE_VERSION/dbmate-linux-${TARGETARCH} \