Added a build for the portainer docker container. Portainer is a web ui
that simplifies monitoring and operations on Docker containers. The
build process moves the root of the UI to make it easier to integrate
later into a web UI consolidation to a single port through a prox
server. Portainer can currently be accessed at port 9000 of the docker
host.

Change-Id: I44d38846ac820e17e1854389613b75253782d8f2
diff --git a/docker/Dockerfile.portainer b/docker/Dockerfile.portainer
new file mode 100644
index 0000000..e3a894f
--- /dev/null
+++ b/docker/Dockerfile.portainer
@@ -0,0 +1,11 @@
+FROM centurylink/ca-certs
+
+COPY tmp_portainer /
+
+VOLUME /data
+
+WORKDIR /
+
+EXPOSE 9000
+
+ENTRYPOINT ["/portainer"]