From 68efb25e9b164c355671d6486543555a43264cc8 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 7 Nov 2023 16:33:29 +0100 Subject: [PATCH] Upgrade playwright browser library (#1942) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0f4ea75..7bda03a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN pip install --target=/dependencies -r /requirements.txt # Playwright is an alternative to Selenium # Excluded this package from requirements.txt to prevent arm/v6 and arm/v7 builds from failing # https://github.com/dgtlmoon/changedetection.io/pull/1067 also musl/alpine (not supported) -RUN pip install --target=/dependencies playwright~=1.27.1 \ +RUN pip install --target=/dependencies playwright~=1.39 \ || echo "WARN: Failed to install Playwright. The application can still run, but the Playwright option will be disabled." # Final image stage