From ba7f0085fbc7bfaae8efccb12fb63fa2d806d0f0 Mon Sep 17 00:00:00 2001 From: raethlein Date: Fri, 1 Nov 2024 01:38:49 +0100 Subject: [PATCH] Update playwright to support Python 3.13 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 806621a8..661415a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ENV PIP_VERSION=${PIP_VERSION} RUN pip install --no-cache-dir --upgrade "pip==${PIP_VERSION}" && pip --version # Setup Playwright -ARG PLAYWRIGHT_VERSION="1.39.0" +ARG PLAYWRIGHT_VERSION="1.48.0" ENV PLAYWRIGHT_VERSION=${PLAYWRIGHT_VERSION} RUN pip install --no-cache-dir playwright=="${PLAYWRIGHT_VERSION}" && playwright install webkit chromium firefox --with-deps