12 lines
319 B
Docker
12 lines
319 B
Docker
FROM python:3.6.2-slim
|
|
RUN apt-get update && apt-get install curl -y &&\
|
|
curl -Lks get.docker.com | bash
|
|
|
|
RUN pip install requests discord.py docker pybooru termcolor
|
|
|
|
ADD app /app
|
|
|
|
# Run this to test that the python compiles when we actually go live
|
|
RUN python /app/dragon-bot.py test
|
|
|
|
CMD python app/dragon-bot.py |