From a7a03f9d904bac8d78ef611403e25f00d72007ee Mon Sep 17 00:00:00 2001 From: Pawan Rawal <pawan0201@gmail.com> Date: Thu, 5 May 2016 18:13:27 +0530 Subject: [PATCH] shifting echo statement to end of run command --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1deb5e87..c3baa5cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,8 +21,8 @@ ENV LD_LIBRARY_PATH "/usr/local/lib" # Install DGraph and update dependencies to right versions. RUN go get -v github.com/robfig/glock && \ go get -v github.com/dgraph-io/dgraph/... && \ - glock sync github.com/dgraph-io/dgraph && echo "v0.2.3" && \ - go test github.com/dgraph-io/dgraph/... + glock sync github.com/dgraph-io/dgraph && \ + go test github.com/dgraph-io/dgraph/... && echo "v0.2.3" # Create the dgraph and data directory. These directories should be mapped # to host machine for persistence. -- GitLab