Include `nc` command in distributedlog docker image

Descriptions of the changes in this PR:

`nc` is usually used for checking if zookeeper is up and also verifying connectivity. It is good to have `nc` installed in the docker image by default. so a k8s helm script can use that for checking connectivities.

Author: Sijie Guo <sijie@apache.org>

Reviewers: Jia Zhai <None>

This closes #241 from sijie/sijie/docker_image_nc
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 8e6a1f7..4b66e2a 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -28,7 +28,7 @@
 
 # install dependencies
 RUN set -x \
-    && yum install -y wget \
+    && yum install -y wget nc \
     && wget -q https://bootstrap.pypa.io/get-pip.py \
     && python get-pip.py \
     && pip install zk-shell \