diff --git a/DOCKER/Dockerfile b/DOCKER/Dockerfile
index d58e8f8acdc4bce80a2a8ab61089ddf9bdfb781c..74345aec37e1e7c126fdacb9ddb31d83f4003ba3 100644
--- a/DOCKER/Dockerfile
+++ b/DOCKER/Dockerfile
@@ -25,9 +25,8 @@ RUN mkdir --parents $GOPATH/src/$REPO
 WORKDIR $GOPATH/src/$REPO
 RUN git clone https://$REPO . && \
   git checkout $BRANCH && \
-  make && \
-  rm ./build/barak && \
-  mv ./build/* /usr/local/bin/
+  go build -o ./build/tendermint ./cmd/tendermint
+  mv ./build/tendermint /usr/local/bin/tendermint
 
 # set the repo and install erisdb
 ENV REPO $GOPATH/src/github.com/eris-ltd/eris-db