mirror of
https://github.com/bellingcat/reddit-post-scraping-tool.git
synced 2026-06-08 03:28:30 +03:00
12 lines
213 B
Docker
12 lines
213 B
Docker
FROM python:latest
|
|
|
|
ADD requirements.txt /
|
|
|
|
ADD reddit-post-scraping-tool.py /
|
|
|
|
COPY ./reddit-post-scraping-tool.py ./
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python", "./reddit-post-scraping-tool.py"]
|