From 50a7ef119a334f9a1f92791d3c5faf0c56bbea80 Mon Sep 17 00:00:00 2001 From: Rushabh Gosar Date: Sun, 28 Dec 2025 10:48:29 -0800 Subject: [PATCH] Align Playwright base image version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0fafa7e..556ac63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright/python:v1.50.0-jammy +FROM mcr.microsoft.com/playwright/python:v1.57.0-jammy WORKDIR /app @@ -6,7 +6,7 @@ ENV PYTHONUNBUFFERED=1 COPY scraper_service.py /app/scraper_service.py -RUN python -m pip install --no-cache-dir flask beautifulsoup4 playwright +RUN python -m pip install --no-cache-dir flask beautifulsoup4 playwright==1.57.0 EXPOSE 9777