Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Threshold version of DKG #108

Closed
wants to merge 12 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -9,6 +9,9 @@ language: go
go:
- tip

env:
- GO111MODULE=on

script:
#- cd core && go test -v && cd ../ && cd beacon/ && go test -v && cd ../
- go test -v ./...
Expand Down
15 changes: 13 additions & 2 deletions Dockerfile
@@ -1,10 +1,21 @@
FROM golang:1.10.2-alpine
FROM golang:1.12.4-alpine

MAINTAINER Nicolas GAILLY <nicolas.gailly@epfl.ch>
MAINTAINER Nicolas GAILLY <nikkolasg@gmail.com>

RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh
COPY . "/go/src/github.com/dedis/drand"
WORKDIR "/go/src/github.com/dedis/drand"
# from https://dev.to/plutov/docker-and-go-modules-3kkn
ENV GO111MODULE=on

COPY go.mod .
COPY go.sum .
RUN go mod download

RUN go install && rm -rf "/go/src/github.com/dedis/drand"

WORKDIR /

ENTRYPOINT ["drand"]

322 changes: 0 additions & 322 deletions Gopkg.lock

This file was deleted.