diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-09 09:22:04 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:22 +0800 |
commit | 938361a88acf01a5cbe27db5f28706344b4735da (patch) | |
tree | 0985ef7fff97b099403bf3f8d1848cd097a1e2c9 /Dockerfile | |
parent | 0c08596452f6f7d88af39a4f635b5fda6475021a (diff) | |
download | go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.tar go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.tar.gz go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.tar.bz2 go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.tar.lz go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.tar.xz go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.tar.zst go-tangerine-938361a88acf01a5cbe27db5f28706344b4735da.zip |
Dockerfile.alltools: update Dockerfile for building tools (#234)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 9b5615fcb..d71c678a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Build Geth in a stock Go builder container +# Build Gdex in a stock Go builder container FROM golang:1.11-alpine3.9 as builder RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev pkgconfig @@ -6,7 +6,7 @@ RUN apk add --no-cache make gcc musl-dev linux-headers g++ gmp-dev openssl-dev p ADD . /dexon RUN cd /dexon && make clean && DOCKER=alpine make gdex -# Pull Geth into a second stage deploy alpine container +# Pull Gdex into a second stage deploy alpine container FROM alpine:3.9 RUN apk add --no-cache ca-certificates libstdc++ curl gmp openssl |