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:
parent
1e0ab79f9a
commit
71b7b488f4
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue