Skip to content

Commit 13e646a

Browse files
committed
Node 6.9.1.
1 parent 3a6c19a commit 13e646a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
2828
apt-get -y install wget python build-essential && \
2929
cd /tmp && \
3030
wget --progress=dot:mega \
31-
https://nodejs.org/dist/v6.9.0/node-v6.9.0-linux-x64.tar.xz && \
31+
https://nodejs.org/dist/v6.9.1/node-v6.9.1-linux-x64.tar.xz && \
3232
tar -xJf node-v*.tar.xz --strip-components 1 -C /usr/local && \
3333
rm node-v*.tar.xz && \
3434
su stf-build -s /bin/bash -c '/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js install' && \

docker/armv7l/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN set -xo pipefail && \
1919
apk update && \
2020
echo '--- Building node' && \
2121
apk add curl make gcc g++ binutils-gold python linux-headers paxctl libgcc libstdc++ && \
22-
curl -sSL https://nodejs.org/dist/v6.9.0/node-v6.9.0.tar.gz | tar -xz && \
22+
curl -sSL https://nodejs.org/dist/v6.9.1/node-v6.9.1.tar.gz | tar -xz && \
2323
cd /node-v* && \
2424
./configure --prefix=/usr && \
2525
make -j$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) && \

0 commit comments

Comments
 (0)