Align Playwright base image version

This commit is contained in:
2025-12-28 10:48:29 -08:00
parent 4ab0e22047
commit 50a7ef119a

View File

@@ -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