Skip to content

Commit

Permalink
Add ability to use testrpc through a Docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
tayzlor committed Apr 7, 2016
1 parent d5efa9a commit 4867128
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.git
node_modules
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM mhart/alpine-node:5.10

WORKDIR /src
ADD . .

RUN apk add --no-cache make gcc g++ python git bash
RUN npm install

EXPOSE 8545

ENTRYPOINT ["node", "./bin/testrpc"]

0 comments on commit 4867128

Please sign in to comment.