From 4a04a939a930f4b001b85e54fc9ae87a7fafa487 Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Thu, 17 Jun 2021 16:14:10 -0700 Subject: [PATCH] fix(docker): use node 14 not node 16 (#7212) --- utils/docker/Dockerfile.bionic | 4 ++-- utils/docker/Dockerfile.focal | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/docker/Dockerfile.bionic b/utils/docker/Dockerfile.bionic index 44433665f4..b83d1d9aed 100644 --- a/utils/docker/Dockerfile.bionic +++ b/utils/docker/Dockerfile.bionic @@ -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. diff --git a/utils/docker/Dockerfile.focal b/utils/docker/Dockerfile.focal index c55d079e43..0670490481 100644 --- a/utils/docker/Dockerfile.focal +++ b/utils/docker/Dockerfile.focal @@ -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.