Skip to content

Instantly share code, notes, and snippets.

@jake-walker
Last active May 21, 2018 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jake-walker/2b991d9743d0d851efe77cdce53758c1 to your computer and use it in GitHub Desktop.
Save jake-walker/2b991d9743d0d851efe77cdce53758c1 to your computer and use it in GitHub Desktop.
btc-rpc-explorer Docker
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