This commit is contained in:
Daniel Hládek 2023-04-06 12:26:50 +02:00
parent 9a9e8da4cf
commit 2de0da85a6
2 changed files with 11 additions and 0 deletions

6
mongo/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.9
RUN mkdir /app
COPY requirements.txt /app
RUN pip install -r requirements.txt
COPY *.py /app
WORKDIR /app

5
mongo/requirements.txt Normal file
View File

@ -0,0 +1,5 @@
trafilatura
courlan
pymongo
click
lxml