File tree 4 files changed +12
-9
lines changed 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
2
2
3
3
ADD . /go-ethereum
4
4
RUN \
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 && \
9
9
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
10
10
11
11
EXPOSE 8545
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.5
2
2
3
3
RUN \
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 && \
5
5
git clone --depth 1 https://github.com/ethereum/go-ethereum && \
6
6
(cd go-ethereum && make geth) && \
7
7
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 && \
9
9
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
10
10
11
11
EXPOSE 8545
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.5
2
2
3
3
RUN \
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 && \
5
5
git clone --depth 1 --branch release/1.5 https://github.com/ethereum/go-ethereum && \
6
6
(cd go-ethereum && make geth) && \
7
7
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 && \
9
9
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
10
10
11
11
EXPOSE 8545
You can’t perform that action at this time.
0 commit comments