Skip to content
Snippets Groups Projects
Commit d8c00224 authored by Silas Davis's avatar Silas Davis Committed by GitHub
Browse files

Merge pull request #174 from benjaminbollen/fixdockerfile_glideinstall

Fix Dockerfile; install dependencies with glide was missing
parents 0dce3edc ec6dad77
No related branches found
No related tags found
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