Skip to content
Snippets Groups Projects
Unverified Commit ec6dad77 authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

Fix Dockerfile; install dependencies with glide was missing

parent 0dce3edc
No related merge requests found
......@@ -17,6 +17,9 @@ COPY . $ERIS_DB_SRC_PATH
# fetch and install eris-db and its dependencies
# install glide for dependency management
RUN go get github.com/Masterminds/glide \
# install dependencies for eris-db with glide
&& cd $ERIS_DB_SRC_PATH \
&& glide install \
# build the main eris-db target
&& cd $ERIS_DB_SRC_PATH/cmd/eris-db \
&& go build \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment