Skip to content

Commit df85fb5

Browse files
committed
Feature(docker/dev): Support Node 10
1 parent 3a3c755 commit df85fb5

3 files changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:10-slim
2+
3+
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
4+
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-6.0 main" | tee -a /etc/apt/sources.list && \
5+
apt update -qq && \
6+
apt install libz-dev cmake clang git llvm-6.0 llvm-6.0-dev -y && \
7+
ln -s /usr/bin/llvm-config-6.0 /usr/bin/llvm-config
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:10-slim
2+
3+
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
4+
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main" | tee -a /etc/apt/sources.list && \
5+
apt update -qq && \
6+
apt install libz-dev cmake clang git llvm-7 llvm-7-dev -y && \
7+
ln -s /usr/bin/llvm-config-7 /usr/bin/llvm-config
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:10-slim
2+
3+
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
4+
echo "deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch main" | tee -a /etc/apt/sources.list && \
5+
apt update -qq && \
6+
apt install libz-dev cmake clang git llvm-8 llvm-8-dev -y && \
7+
ln -s /usr/bin/llvm-config-8 /usr/bin/llvm-config

0 commit comments

Comments
 (0)