aboutsummaryrefslogtreecommitdiffstats
path: root/images/bls-go-alpine/Dockerfile
blob: 9419a32ee4bac08579dbbfe6574105cbd3a838ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
FROM golang:alpine
MAINTAINER Jimmy Hu <jimmy.hu@dexon.org>

# Install dependencies
RUN apk add --update-cache build-base gmp-dev openssl-dev git

# Build bls library
RUN mkdir work ; cd work
RUN git clone --depth 1 git://github.com/dexon-foundation/mcl.git
RUN mkdir bls
COPY . bls/
RUN cd bls ; make clean && make test_go MCL_USE_OPENSSL=0 DOCKER=alpine -j && cp lib/* /usr/lib/