Last active
May 21, 2018 11:34
-
-
Save jake-walker/2b991d9743d0d851efe77cdce53758c1 to your computer and use it in GitHub Desktop.
btc-rpc-explorer Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:8-alpine | |
RUN apk update && apk upgrade && apk add --no-cache git python alpine-sdk | |
WORKDIR /opt/ | |
RUN git clone https://github.com/janoside/btc-rpc-explorer | |
WORKDIR /opt/btc-rpc-explorer | |
VOLUME ["/opt/btc-rpc-explorer"] | |
RUN npm install | |
EXPOSE 3002 | |
ENTRYPOINT ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment