]> cat aescling's git repositories - mastodon.git/commitdiff
[Dockerfile] [Security] Update NodeJS to V16 (LTS) on docker. (#16856)
authorShlee <github@shl.ee>
Wed, 17 Nov 2021 06:57:01 +0000 (17:57 +1100)
committerGitHub <noreply@github.com>
Wed, 17 Nov 2021 06:57:01 +0000 (07:57 +0100)
* [Security] Update NodeJS on docker.

https://nodejs.org/en/blog/vulnerability/oct-2021-security-releases/

* Update Dockerfile

* Upgrade npm package

* Update Dockerfile

Dockerfile

index ab29e79b856b64e368bfee7d70e32bb7c9209b32..483f5e79a80a976fff386e60cb73597c409f3d1b 100644 (file)
@@ -3,8 +3,8 @@ FROM ubuntu:20.04 as build-dep
 # Use bash for the shell
 SHELL ["/bin/bash", "-c"]
 
-# Install Node v14 (LTS)
-ENV NODE_VER="14.17.6"
+# Install Node v16 (LTS)
+ENV NODE_VER="16.13.0"
 RUN ARCH= && \
     dpkgArch="$(dpkg --print-architecture)" && \
   case "${dpkgArch##*-}" in \
@@ -45,7 +45,8 @@ RUN apt-get update && \
 
 ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin"
 
-RUN npm install -g yarn && \
+RUN npm install -g npm@latest && \
+       npm install -g yarn && \
        gem install bundler && \
        apt-get update && \
        apt-get install -y --no-install-recommends git libicu-dev libidn11-dev \