From 5137b235e9df6d5a1a44b4d1a04f701e209b2cd8 Mon Sep 17 00:00:00 2001 From: Florent Daigniere Date: Tue, 1 Nov 2022 13:47:21 +0100 Subject: [PATCH] whitelist what we know works If other people use other arch and want their builds to go faster we can whitelist them too after they have confirmed it works. --- core/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/base/Dockerfile b/core/base/Dockerfile index a661877b..29223182 100644 --- a/core/base/Dockerfile +++ b/core/base/Dockerfile @@ -45,7 +45,7 @@ RUN set -euxo pipefail \ { \ machine="$(uname -m)" \ ; deps="build-base gcc libffi-dev python3-dev" \ - ; [[ "${machine}" == armv7 ]] && \ + ; [[ "${machine}" != x86_64 ]] && \ deps="${deps} cargo git libressl-dev mariadb-connector-c-dev postgresql-dev" \ ; apk add --virtual .build-deps ${deps} \ ; [[ "${machine}" == armv7 ]] && \