fix(docker): use node 14 not node 16 (#7212)

This commit is contained in:
Joel Einbinder 2021-06-17 16:14:10 -07:00 committed by GitHub
parent 388c6f5196
commit 4a04a939a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -2,9 +2,9 @@ FROM ubuntu:bionic
# === INSTALL Node.js ===
# Install node16
# Install node14
RUN apt-get update && apt-get install -y curl && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
apt-get install -y nodejs
# Feature-parity with node.js base images.

View file

@ -2,9 +2,9 @@ FROM ubuntu:focal
# === INSTALL Node.js ===
# Install node16
# Install node14
RUN apt-get update && apt-get install -y curl && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
apt-get install -y nodejs
# Feature-parity with node.js base images.