diff options
author | sveneh <sven@ethdev.com> | 2015-01-26 05:52:38 +0800 |
---|---|---|
committer | sveneh <sven@ethdev.com> | 2015-01-26 05:52:38 +0800 |
commit | 58ec49a34da85b71fe5f82b263986faa2b570eaa (patch) | |
tree | 6f1b72b2968a4f53795be2d095c1c68be894ae54 /ansible/test-files/docker-python/Dockerfile | |
parent | 52e174b1f7fcd5bcc7fa1f134b9cd085a24ff642 (diff) | |
download | dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.gz dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.bz2 dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.lz dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.xz dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.zst dexon-58ec49a34da85b71fe5f82b263986faa2b570eaa.zip |
added EC2 provisioning, optimised docker for EC2, added python and
cppjit client (python not yet working)
Diffstat (limited to 'ansible/test-files/docker-python/Dockerfile')
-rw-r--r-- | ansible/test-files/docker-python/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ansible/test-files/docker-python/Dockerfile b/ansible/test-files/docker-python/Dockerfile new file mode 100644 index 000000000..0265f120b --- /dev/null +++ b/ansible/test-files/docker-python/Dockerfile @@ -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"] |