mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-17 21:08:25 +08:00
9 lines
138 B
Docker
9 lines
138 B
Docker
FROM python:3.11-slim
|
|
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
useradd -m -s /bin/bash app
|
|
|
|
USER app
|
|
|
|
RUN pip install scrapegraphai
|