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.