Update node.js v12 from v12.3.1 to v12.4.0
- https://nodejs.org/en/blog/release/v12.4.0/ - https://github.com/nodejs/node/releases/tag/v12.4.0 - https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V12.md#12.4.0
This commit is contained in:
parent
08ec83dc97
commit
1bacb0376c
|
@ -1,6 +1,6 @@
|
|||
FROM alpine:3.9
|
||||
|
||||
ENV NODE_VERSION 12.3.1
|
||||
ENV NODE_VERSION 12.4.0
|
||||
|
||||
RUN addgroup -g 1000 node \
|
||||
&& adduser -u 1000 -G node -s /bin/sh -D node \
|
||||
|
|
|
@ -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.3.1
|
||||
ENV NODE_VERSION 12.4.0
|
||||
|
||||
RUN buildDeps='xz-utils' \
|
||||
&& ARCH= && dpkgArch="$(dpkg --print-architecture)" \
|
||||
|
|
|
@ -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.3.1
|
||||
ENV NODE_VERSION 12.4.0
|
||||
|
||||
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
|
||||
&& case "${dpkgArch##*-}" in \
|
||||
|
|
Loading…
Reference in New Issue