From 8eb0d63ec020c84c409faa6629b929559697bf50 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Thu, 16 Dec 2021 21:07:49 -0800 Subject: [PATCH] Fix rustup attempt on arm --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b5b719..5c13b92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,11 +12,12 @@ RUN apk add \ npm \ py3-pip \ python3 \ - rustup \ ; # Try to install shellcheck RUN test "$(uname -m)" = "x86_64" && apk add shellcheck || true +# Try to install rustup +RUN apk add rustup || true # Install dependencies for python-language-server RUN apk add gcc g++ python3-dev