Files
kwaylon/Dockerfile
2022-01-28 00:22:33 -06:00

17 lines
322 B
Docker

FROM python:latest
RUN python -m pip install --upgrade pip
RUN pip install pandas
RUN pip install nltk
RUN python -m nltk.downloader -d /usr/local/share/nltk_data all
RUN pip install python-dotenv
RUN pip install nextcord
RUN pip install beautifulsoup4 requests lxml
WORKDIR /usr/app/src
CMD [ "python", "main.py" ]