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"