chore: use Node.js 14 (new LTS) in Docker image (#4262)

Discussion / background: https://github.com/microsoft/playwright/pull/3642#issuecomment-686640755

Closes #4254
This commit is contained in:
Max Schmitt 2020-12-07 03:24:27 +01:00 committed by GitHub
parent 1e0ab79f9a
commit 71b7b488f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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