feat(linkedin): install Playwright Chromium in Docker image
This commit is contained in:
parent
ff6dcf0628
commit
54d3d44f30
1 changed files with 3 additions and 1 deletions
|
|
@ -10,7 +10,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
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)
|
||||
COPY scrapers/ /app/scrapers/
|
||||
|
|
|
|||
Loading…
Reference in a new issue