Skip to content

Commit d19b7be

Browse files
committed
Add Dockerfile and update requirements.txt.
1 parent 99a3302 commit d19b7be

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM python:3.11
2+
3+
WORKDIR /app
4+
COPY scripts/ /app
5+
6+
RUN pip install -r requirements.txt
7+
8+
CMD ["python", "main.py"]

scripts/requirements.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
beautifulsoup4==4.9.3
2-
colorama==0.4.6
3-
googlesearch_python==1.1.0
4-
openai==0.27.0
5-
playsound==1.2.2
6-
readability_lxml==0.8.1
7-
requests==2.25.1
8-
docker==6.0.1
1+
requests
2+
beautifulsoup4
3+
colorama
4+
googlesearch_python
5+
openai
6+
playsound
7+
readability_lxml
8+
docker

0 commit comments

Comments
 (0)