rename networkdiag.py to app.py

Change-Id: I7c1ed5a21038334818bf5182b352dfb790168011
diff --git a/Makefile b/Makefile
index 8e54fc4..e4d78be 100644
--- a/Makefile
+++ b/Makefile
@@ -64,12 +64,10 @@
 
 docker-run:
 	docker run \
-		-itu root:root \
-		--privileged \
-		--network host \
 		--name $(CONTAINER_NAME) \
 		--rm \
-		$(DOCKER_IMAGENAME)
+		$(DOCKER_IMAGENAME) \
+		--user="abc" --password="xyz"
 
 lint:
 	flake8 --exclude=.tox network_diag
diff --git a/VERSION b/VERSION
index b393606..4e379d2 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.0.2-dev
+0.0.2
diff --git a/networkdiag.py b/app.py
similarity index 100%
rename from networkdiag.py
rename to app.py
diff --git a/docker/Dockerfile b/docker/Dockerfile
index e59d267..b99bbae 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -6,6 +6,4 @@
 RUN pip3 install --upgrade pip
 RUN pip3 install -r requirements.txt
 EXPOSE 3333
-CMD [ "python3", "./networkdiag.py"]
-
-
+ENTRYPOINT [ "python3", "./app.py"]