Skip to content
Snippets Groups Projects
Dockerfile.dev 86 B
FROM python:3

WORKDIR /usr/src/app

RUN pip install mkdocs

CMD [ "mkdocs", "serve" ]