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/portainer/buildPortainer.sh b/portainer/buildPortainer.sh
new file mode 100755
index 0000000..36a2707
--- /dev/null
+++ b/portainer/buildPortainer.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+docker run --rm -d --name pbuild -p 9999:9000 portainer/portainer
+rm -fr tmp_portainer
+mkdir tmp_portainer
+docker cp pbuild:/ tmp_portainer
+
+sed -i -e '
+s~constant("DOCKER_ENDPOINT","api/docker")~constant("DOCKER_ENDPOINT","docker/api/docker")~
+s~constant("CONFIG_ENDPOINT","api/settings")~constant("CONFIG_ENDPOINT","docker/api/settings")~
+s~constant("AUTH_ENDPOINT","api/auth")~constant("AUTH_ENDPOINT","docker/api/auth")~
+s~constant("USERS_ENDPOINT","api/users")~constant("USERS_ENDPOINT","docker/api/users")~
+s~constant("ENDPOINTS_ENDPOINT","api/endpoints")~constant("ENDPOINTS_ENDPOINT","docker/api/endpoints")~
+s~constant("TEMPLATES_ENDPOINT","api/templates")~constant("TEMPLATES_ENDPOINT","docker/api/templates")~
+' tmp_portainer/js/app.*.js
+
+
+docker build -t voltha/portainer -f docker/Dockerfile.portainer .
+rm -fr tmp_portainer
+docker stop pbuild
+