This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PSMBot-Virtual-Assistant/Dockerfile

12 lines
184 B
Docker

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" ]