FROM python:3.6.1-alpine

COPY app.py /src/app.py

RUN pip install aiohttp

CMD python /src/app.py
