--- /dev/null
+# Dockerfile for building the markdown docs
+#
+# example usage:
+# docs/$ docker build -t pdns-mkdocs .
+# docs/$ cd ../.. # to pdns checkout root
+# pdns/$ docker run -t -i -v $(pwd):/pdns pdns-mkdocs bash
+# root@07d38c7f88a5:/# useradd -u 1000 peter
+# root@07d38c7f88a5:/# su - peter
+# No directory, logging in with HOME=/
+# $ bash
+# peter@07d38c7f88a5:/$ cd /pdns/pdns/docs
+# peter@07d38c7f88a5:/pdns/pdns/docs$ make html-new/index.html
+#
+
+FROM ubuntu:14.04
+RUN apt-get update
+RUN apt-get -y install git build-essential vim-tiny pandoc python-pip
+RUN pip install pandocfilters mkdocs