FROM python:3

WORKDIR /usr/src/app

RUN pip install mkdocs

CMD [ "mkdocs", "serve" ]