feat(linkedin): install Playwright Chromium in Docker image

This commit is contained in:
pyr0ball 2026-03-13 10:44:03 -07:00
parent ff6dcf0628
commit 54d3d44f30

View file

@ -10,7 +10,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt && \
playwright install chromium && \
playwright install-deps chromium
# Bundle companyScraper (company research web scraper) # Bundle companyScraper (company research web scraper)
COPY scrapers/ /app/scrapers/ COPY scrapers/ /app/scrapers/