Fix shellcheck install failure on arm

This commit is contained in:
ViViDboarder 2021-12-16 21:05:42 -08:00
parent ed73884345
commit 7861b3c4e5
1 changed files with 3 additions and 1 deletions

View File

@ -13,9 +13,11 @@ RUN apk add \
py3-pip \
python3 \
rustup \
shellcheck \
;
# Try to install shellcheck
RUN test "$(uname -m)" = "x86_64" && apk add shellcheck || true
# Install dependencies for python-language-server
RUN apk add gcc g++ python3-dev