build: install lerna in Docker images

This commit is contained in:
LongYinan 2022-01-18 16:48:29 +08:00
parent 1238ee0276
commit 1b0b075b48
No known key found for this signature in database
GPG key ID: C3666B7FC82ADAD7
2 changed files with 4 additions and 6 deletions

View file

@ -22,7 +22,7 @@ RUN apk add --update --no-cache wget musl-dev && \
tar \
ninja && \
apk upgrade && \
npm install -g pnpm
npm install -g pnpm lerna
RUN rustup-init -y && \
yarn global add pnpm && \

View file

@ -6,8 +6,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
PATH=/usr/local/cargo/bin:$PATH \
CC=clang \
CXX=clang++ \
CXXFLAGS="-stdlib=libc++ -std=c++20 -static"
CXX=clang++
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" >> /etc/apt/sources.list && \
@ -33,9 +32,8 @@ RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
rustup target add aarch64-unknown-linux-gnu && \
rustup target add armv7-unknown-linux-gnueabihf && \
npm install -g pnpm && \
ln -sf /usr/bin/clang /usr/bin/cc && \
echo '[target.x86_64-unknown-linux-gnu]\nrustflags = ["-C", "linker=clang", "-C", "link-arg=-fuse-ld=lld", "-C", "link-arg=-Wl", "-C", "link-arg=-lc++"]' > /usr/local/cargo/config.toml
npm install -g pnpm lerna && \
ln -sf /usr/bin/clang /usr/bin/cc
RUN wget https://www.nasm.us/pub/nasm/releasebuilds/${NASM_VERSION}/nasm-${NASM_VERSION}.tar.xz && \
tar -xf nasm-${NASM_VERSION}.tar.xz && \