fix(docker): use node 14 not node 16 (#7212)
This commit is contained in:
parent
388c6f5196
commit
4a04a939a9
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue