From e785e31e19b779a99ddd4c4a45ac4ed801f3d107 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Sun, 17 Apr 2022 22:21:13 +0800 Subject: [PATCH] build: install alpine build-base on stable channel --- alpine.Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/alpine.Dockerfile b/alpine.Dockerfile index 2457cbc0..07519e42 100644 --- a/alpine.Dockerfile +++ b/alpine.Dockerfile @@ -6,7 +6,7 @@ ENV PATH="/aarch64-linux-musl-cross/bin:/usr/local/cargo/bin/rustup:/root/.cargo CXX="clang++" \ GN_EXE=gn -RUN apk add --update --no-cache wget musl-dev && \ +RUN apk add --update --no-cache wget build-base musl-dev && \ sed -i -e 's/v[[:digit:]]\..*\//edge\//g' /etc/apk/repositories && \ apk add --update --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \ rustup \ @@ -14,7 +14,6 @@ RUN apk add --update --no-cache wget musl-dev && \ python3 \ python2 \ git \ - build-base \ clang \ cmake \ llvm \