Add files via upload

This commit is contained in:
Richard Mwewa
2023-02-10 19:16:01 +02:00
committed by GitHub
parent 6cc8002610
commit 69a6968459
4 changed files with 129 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM python:latest
WORKDIR /app
COPY . .
RUN pip install --upgrade pip && pip install build && python -m build && pip install dist/*.whl
ENTRYPOINT ["reddit_post_scraping_tool"]