Skip to content

Commit

Permalink
feat: add ansible nodes
Browse files Browse the repository at this point in the history
Signed-off-by: Sacha Froment <sfroment42@gmail.com>
  • Loading branch information
sfroment authored and gfanton committed Mar 14, 2019
1 parent 7508213 commit d2c6215
Show file tree
Hide file tree
Showing 5 changed files with 546 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile.scw
@@ -0,0 +1,10 @@
# build core
FROM golang:1.11.4 as core-builder
RUN apt-get update && apt-get install nodejs make gcc g++ musl-dev libssl-dev git -y
ENV GO111MODULE=on GOPROXY=http://goproxy.berty.io:3000
COPY core/go.* /go/src/berty.tech/core/
WORKDIR /go/src/berty.tech
RUN cd core && go get .
COPY core /go/src/berty.tech/core
RUN cd core && make _ci_prepare # touching generated files
RUN cd core && make install

0 comments on commit d2c6215

Please sign in to comment.