Add Dockerfile to build docker image
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..7b202f3
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,20 @@
+FROM ubuntu:14.04
+MAINTAINER jono@opennetworking.org
+
+RUN apt-get update && \
+ apt-get install -qy --no-install-recommends telnet build-essential gawk wget texinfo supervisor iptables libreadline-gplv2-dev pkg-config libc-ares-dev autoconf automake libtool
+
+RUN mkdir /quagga
+COPY . /quagga/
+WORKDIR /quagga
+RUN autoreconf -f -i && \
+ ./configure --enable-fpm --prefix=/usr && \
+ make && \
+ make install
+
+EXPOSE 179 2601 2605
+
+WORKDIR /
+ADD docker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
+ENTRYPOINT ["/usr/bin/supervisord"]
+