Merge pull request #960 from PeterDaveHello/update-node.js

Update node.js v8.x from v8.14.0 to v8.14.1
This commit is contained in:
Peter Dave Hello 2018-12-19 02:47:47 +08:00 committed by GitHub
commit 2c75ae92f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
FROM alpine:3.8
ENV NODE_VERSION 8.14.0
ENV NODE_VERSION 8.14.1
RUN addgroup -g 1000 node \
&& adduser -u 1000 -G node -s /bin/sh -D node \

View File

@ -3,7 +3,7 @@ FROM debian:jessie-slim
RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
ENV NODE_VERSION 8.14.0
ENV NODE_VERSION 8.14.1
RUN buildDeps='xz-utils' \
&& ARCH= && dpkgArch="$(dpkg --print-architecture)" \

View File

@ -3,7 +3,7 @@ FROM buildpack-deps:jessie
RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
ENV NODE_VERSION 8.14.0
ENV NODE_VERSION 8.14.1
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \

View File

@ -1,4 +1,4 @@
FROM node:8.14.0-stretch
FROM node:8.14.1-stretch
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

View File

@ -3,7 +3,7 @@ FROM buildpack-deps:stretch
RUN groupadd --gid 1000 node \
&& useradd --uid 1000 --gid node --shell /bin/bash --create-home node
ENV NODE_VERSION 8.14.0
ENV NODE_VERSION 8.14.1
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \