aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorNick Johnson <arachnid@notdot.net>2016-11-17 22:38:14 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-11-17 22:38:14 +0800
commit87b8254da1ef9ffff7ebdbea6e03e5e843317eb7 (patch)
tree13d352fd94eebe20e0379ad5cc65ed2e0479f8e3 /Dockerfile
parent20eab80189a139643d16e2eaee8a928874aa4919 (diff)
downloadgo-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.tar
go-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.tar.gz
go-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.tar.bz2
go-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.tar.lz
go-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.tar.xz
go-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.tar.zst
go-tangerine-87b8254da1ef9ffff7ebdbea6e03e5e843317eb7.zip
Dockerfile: Add git dependency to Dockerfile (#3295)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 2d35c0141..f24506f69 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,10 +2,10 @@ FROM alpine:3.3
ADD . /go-ethereum
RUN \
- apk add --update go make gcc musl-dev && \
+ apk add --update git go make gcc musl-dev && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
- apk del go make gcc musl-dev && \
+ apk del git go make gcc musl-dev && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545