mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-04 21:01:04 +08:00
10 lines
266 B
Docker
10 lines
266 B
Docker
FROM python:3.11-slim
|
|
|
|
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --no-cache-dir scrapegraphai
|
|
RUN pip install --no-cache-dir scrapegraphai[burr]
|
|
|
|
RUN python3 -m playwright install-deps
|
|
RUN python3 -m playwright install
|