From 4ab0e2204745eb829cbafc15727205ec04efeb5e Mon Sep 17 00:00:00 2001 From: Rushabh Gosar Date: Sun, 28 Dec 2025 00:40:56 -0800 Subject: [PATCH] Install playwright in Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbceef8..0fafa7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 +RUN python -m pip install --no-cache-dir flask beautifulsoup4 playwright EXPOSE 9777