18 lines
320 B
Docker
18 lines
320 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
|
|
|
|
# below fuckery from stockquotes
|
|
RUN pip install beautifulsoup4
|
|
RUN pip install requests
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY ./ ./
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD [ "python", "main.py" ]
|