mirror of https://github.com/hyperledger/besu
An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
340 B
20 lines
340 B
FROM node:8-alpine
|
|
|
|
RUN apk update && apk upgrade && \
|
|
apk add --no-cache git sed python make g++
|
|
|
|
RUN git clone https://github.com/mix-blockchain/block-explorer.git explorer
|
|
|
|
WORKDIR explorer/
|
|
|
|
RUN npm install
|
|
|
|
COPY *.patch ./
|
|
COPY favicon.png public/favicon.png
|
|
|
|
RUN git apply *.patch
|
|
|
|
CMD npm start
|
|
|
|
# List Exposed Ports
|
|
EXPOSE 3000
|
|
|