github.com/FUSIONFoundation/efsn@v3.6.2-0.20200916075423-dbb5dd5d2cc7+incompatible/containers/docker/develop-alpine/Dockerfile (about) 1 FROM alpine:3.7 2 3 RUN \ 4 apk add --update go git make gcc musl-dev linux-headers ca-certificates && \ 5 git clone --depth 1 https://github.com/FusionFoundation/efsn && \ 6 (cd go-ethereum && make geth) && \ 7 cp efsn/build/bin/geth /geth && \ 8 apk del go git make gcc musl-dev linux-headers && \ 9 rm -rf /go-ethereum && rm -rf /var/cache/apk/* 10 11 EXPOSE 8545 12 EXPOSE 40404 13 14 ENTRYPOINT ["/geth"]