dragon-bot/Dockerfile-test-env
2017-09-24 17:31:03 -07:00

13 lines
453 B
Plaintext

FROM python:3.6.2-alpine3.6
LABEL name="Dragon Bot Test environment"
RUN apk update && apk add --no-cache vim docker
RUN pip install requests discord.py docker pylint wolframalpha pyowm beautifulsoup4 yahoo-finance
ADD app /app
RUN printf "\n\nTesting your python code for errors\n\n" && \
pylint -E /app/*.py
WORKDIR /app
RUN printf "\n#########################\n Run dragon bot by typing \n python dragon-bot.py\n#########################\n\n"