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

Update node.js v12 from v12.5.0 to v12.6.0
This commit is contained in:
Peter Dave Hello 2019-07-04 02:55:19 +08:00 committed by GitHub
commit b1be313aac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

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 12.5.0
ENV NODE_VERSION 12.6.0
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \