From c6e9e406787240457e13ab3932ddf1f258cabb85 Mon Sep 17 00:00:00 2001
From: Ethan Buchman <ethan@coinculture.info>
Date: Fri, 3 Jul 2015 20:25:04 +0000
Subject: [PATCH] dont use make for tendermint (so we don't build barak/debora)

---
 DOCKER/Dockerfile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/DOCKER/Dockerfile b/DOCKER/Dockerfile
index d58e8f8a..74345aec 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
-- 
GitLab