From 01acfc231161380a599a27a673ae5a85fe6a6d91 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Fri, 27 Jan 2023 10:11:26 +0100 Subject: [PATCH] docker: pin playwright version since we install it before `npm i` https://github.com/microsoft/playwright/issues/13188 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69af099..6df9858 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN apt-get update \ novnc websockify \ dos2unix \ python3-pip \ - && npx playwright install --with-deps firefox \ + && npx playwright@1.29 install --with-deps firefox \ && apt-get clean \ && rm -rf \ /tmp/* \