added EC2 provisioning, optimised docker for EC2, added python and

cppjit client (python not yet working)
This commit is contained in:
sveneh
2015-01-25 22:52:38 +01:00
parent 52e174b1f7
commit 58ec49a34d
18 changed files with 1089 additions and 74 deletions

View File

@ -0,0 +1,14 @@
FROM sveneh/pyethereum-base
RUN git clone --branch master https://github.com/ethereum/pyethereum.git
RUN cd pyethereum && curl https://bootstrap.pypa.io/bootstrap-buildout.py | python
RUN cd pyethereum && bin/buildout
#default port for incoming requests
EXPOSE 30303
WORKDIR /pyethereum/bin
ENTRYPOINT ["./python", "../tests/test_vm.py"]