15 lines
288 B
Docker
15 lines
288 B
Docker
FROM python:latest
|
|
|
|
RUN python -m pip install --upgrade pip
|
|
|
|
RUN pip install pandas
|
|
RUN pip install discord.py
|
|
RUN pip install nltk
|
|
RUN python -m nltk.downloader -d /usr/local/share/nltk_data all
|
|
RUN pip install python-dotenv
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY ./ ./
|
|
|
|
CMD [ "python", "main.py" ]
|