Updated Libraries & One Command requirements file

This commit is contained in:
2022-02-05 17:11:13 +05:30
parent 6e1d61f6a5
commit 0634ffcd6d
8 changed files with 150 additions and 28 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python
WORKDIR /PSMBot-Virtual-Assistant
COPY /main.py .
COPY /weather.py .
COPY news.py .
COPY requirements.txt .
RUN pip install requirements.txt
CMD [ "python", "main.py" ]