napi-rs/debian.Dockerfile

52 lines
1.6 KiB
Text
Raw Normal View History

FROM messense/manylinux2014-cross:x86_64
2021-11-01 00:09:05 +09:00
ARG NASM_VERSION=2.15.05
2021-04-12 12:00:04 +09:00
ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
2021-11-01 00:09:05 +09:00
PATH=/usr/local/cargo/bin:$PATH \
CC=clang \
CXX=clang++ \
CC_x86_64_unknown_linux_gnu=clang \
CXX_x86_64_unknown_linux_gnu=clang++ \
RUST_TARGET=x86_64-unknown-linux-gnu
2021-04-12 12:00:04 +09:00
2021-11-01 19:48:28 +09:00
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-14 main" >> /etc/apt/sources.list && \
echo "deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-14 main" >> /etc/apt/sources.list && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
2021-11-01 00:09:05 +09:00
apt-get install -y --fix-missing --no-install-recommends \
curl \
llvm-14 \
clang-14 \
lld-14 \
nodejs \
xz-utils \
2021-04-12 12:00:04 +09:00
rcs \
git \
2021-11-01 19:48:28 +09:00
make \
gcc-aarch64-linux-gnu \
g++-aarch64-linux-gnu \
gcc-arm-linux-gnueabihf \
g++-arm-linux-gnueabihf \
2021-04-12 12:00:04 +09:00
ninja-build && \
2021-11-01 00:09:05 +09:00
apt-get autoremove -y && \
curl https://sh.rustup.rs -sSf | sh -s -- -y && \
rustup target add aarch64-unknown-linux-gnu && \
2021-11-01 00:09:05 +09:00
rustup target add armv7-unknown-linux-gnueabihf && \
npm install -g yarn pnpm lerna && \
ln -sf /usr/bin/clang-14 /usr/bin/clang && \
ln -sf /usr/bin/clang++-14 /usr/bin/clang++ && \
ln -sf /usr/bin/lld-14 /usr/bin/lld && \
ln -sf /usr/bin/clang-14 /usr/bin/cc
2021-11-01 00:09:05 +09:00
RUN wget https://www.nasm.us/pub/nasm/releasebuilds/${NASM_VERSION}/nasm-${NASM_VERSION}.tar.xz && \
tar -xf nasm-${NASM_VERSION}.tar.xz && \
cd nasm-${NASM_VERSION} && \
./configure --prefix=/usr/ && \
make && \
make install && \
cd / && \
rm -rf nasm-${NASM_VERSION} && \
rm nasm-${NASM_VERSION}.tar.xz