Fix rustup attempt on arm

This commit is contained in:
ViViDboarder 2021-12-16 21:07:49 -08:00
parent 7861b3c4e5
commit 8eb0d63ec0
1 changed files with 2 additions and 1 deletions

View File

@ -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