mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
Delete Dockerfile
File added incorrectly to this location.
This commit is contained in:
parent
607cc21013
commit
e27e05001b
1 changed files with 0 additions and 30 deletions
|
|
@ -1,30 +0,0 @@
|
||||||
FROM alpine:3.8
|
|
||||||
|
|
||||||
RUN apk add --no-cache --update \
|
|
||||||
ca-certificates \
|
|
||||||
gcc \
|
|
||||||
git \
|
|
||||||
go \
|
|
||||||
linux-headers \
|
|
||||||
make \
|
|
||||||
musl-dev &&\
|
|
||||||
#Clone
|
|
||||||
git clone --depth 1 https://github.com/ethereum/go-ethereum &&\
|
|
||||||
cd /go-ethereum &&\
|
|
||||||
make geth &&\
|
|
||||||
cp /go-ethereum/build/bin/geth /geth &&\
|
|
||||||
#CleanUp
|
|
||||||
apk del \
|
|
||||||
gcc \
|
|
||||||
git \
|
|
||||||
go \
|
|
||||||
linux-headers \
|
|
||||||
make \
|
|
||||||
musl-dev &&\
|
|
||||||
rm -rf ~/go-ethereum &&\
|
|
||||||
rm -rf /var/cache/apk/*
|
|
||||||
|
|
||||||
EXPOSE 8545
|
|
||||||
EXPOSE 30303
|
|
||||||
|
|
||||||
ENTRYPOINT ["/geth"]
|
|
||||||
Loading…
Reference in a new issue