File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1+ .git
2+ build /_workspace
3+ build /_bin
Original file line number Diff line number Diff line change 1- FROM alpine:3.3
1+ FROM alpine:3.5
22
33ADD . /go-ethereum
44RUN \
5- apk add --update git go make gcc musl-dev && \
6- (cd go-ethereum && make geth) && \
7- cp go-ethereum/build/bin/geth /geth && \
8- apk del git go make gcc musl-dev && \
5+ apk add --update git go make gcc musl-dev linux-headers && \
6+ (cd go-ethereum && make geth) && \
7+ cp go-ethereum/build/bin/geth /geth && \
8+ apk del git go make gcc musl-dev linux-headers && \
99 rm -rf /go-ethereum && rm -rf /var/cache/apk/*
1010
1111EXPOSE 8545
Original file line number Diff line number Diff line change 11FROM alpine:3.5
22
33RUN \
4- apk add --update go git make gcc musl-dev ca-certificates && \
4+ apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
55 git clone --depth 1 https://github.com/ethereum/go-ethereum && \
66 (cd go-ethereum && make geth) && \
77 cp go-ethereum/build/bin/geth /geth && \
8- apk del go git make gcc musl-dev && \
8+ apk del go git make gcc musl-dev linux-headers && \
99 rm -rf /go-ethereum && rm -rf /var/cache/apk/*
1010
1111EXPOSE 8545
Original file line number Diff line number Diff line change 11FROM alpine:3.5
22
33RUN \
4- apk add --update go git make gcc musl-dev ca-certificates && \
4+ apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
55 git clone --depth 1 --branch release/1.5 https://github.com/ethereum/go-ethereum && \
66 (cd go-ethereum && make geth) && \
77 cp go-ethereum/build/bin/geth /geth && \
8- apk del go git make gcc musl-dev && \
8+ apk del go git make gcc musl-dev linux-headers && \
99 rm -rf /go-ethereum && rm -rf /var/cache/apk/*
1010
1111EXPOSE 8545
You can’t perform that action at this time.
0 commit comments