From 6c73ca5b45490f9e90cfc3bca6f51fd80750dcec Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Wed, 12 Feb 2025 10:46:02 +0100 Subject: [PATCH] fixed architecture check --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a603f39b0..00c4aa8a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,8 +31,7 @@ RUN apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev zlib-de venv/bin/pip debug -v && \ venv/bin/pip install wheel==0.45.1 && \ venv/bin/pip install setuptools_rust==1.10.2 && \ - apk --print-arch &&\ - if [ `apk --print-arch` = "arm64" ]; then \ + if [ `apk --print-arch` = "aarch64" ]; then \ curl https://sh.rustup.rs -sSf | sh -s -- -y; \ fi &&\ venv/bin/pip install -r requirements.txt --no-cache-dir &&\