From 71b7b488f488b4fc20599e88c001332ba9507a09 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 7 Dec 2020 03:24:27 +0100 Subject: [PATCH] chore: use Node.js 14 (new LTS) in Docker image (#4262) Discussion / background: https://github.com/microsoft/playwright/pull/3642#issuecomment-686640755 Closes #4254 --- docs/docker/Dockerfile.bionic | 4 ++-- docs/docker/Dockerfile.focal | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docker/Dockerfile.bionic b/docs/docker/Dockerfile.bionic index 5408cd149c..09257a90df 100644 --- a/docs/docker/Dockerfile.bionic +++ b/docs/docker/Dockerfile.bionic @@ -1,8 +1,8 @@ FROM ubuntu:bionic -# 1. Install node12 +# 1. Install node14 RUN apt-get update && apt-get install -y curl && \ - curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ apt-get install -y nodejs # 2. Install WebKit dependencies diff --git a/docs/docker/Dockerfile.focal b/docs/docker/Dockerfile.focal index 28dae45e63..c19fad60d2 100644 --- a/docs/docker/Dockerfile.focal +++ b/docs/docker/Dockerfile.focal @@ -1,8 +1,8 @@ FROM ubuntu:focal -# 1. Install node12 +# 1. Install node14 RUN apt-get update && apt-get install -y curl && \ - curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ + curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ apt-get install -y nodejs # 2. Install WebKit dependencies