Add Dockerfile and update requirements.txt.

pull/44/head
João Rafael 2023-04-02 17:51:44 -03:00
parent 99a33023c4
commit d19b7bedd1
No known key found for this signature in database
GPG Key ID: AEEED69F826224CB
2 changed files with 16 additions and 8 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.11
WORKDIR /app
COPY scripts/ /app
RUN pip install -r requirements.txt
CMD ["python", "main.py"]

View File

@ -1,8 +1,8 @@
beautifulsoup4==4.9.3
colorama==0.4.6
googlesearch_python==1.1.0
openai==0.27.0
playsound==1.2.2
readability_lxml==0.8.1
requests==2.25.1
docker==6.0.1
requests
beautifulsoup4
colorama
googlesearch_python
openai
playsound
readability_lxml
docker