aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/test-files/docker-python
diff options
context:
space:
mode:
authorsveneh <sven@ethdev.com>2015-01-26 05:52:38 +0800
committersveneh <sven@ethdev.com>2015-01-26 05:52:38 +0800
commit58ec49a34da85b71fe5f82b263986faa2b570eaa (patch)
tree6f1b72b2968a4f53795be2d095c1c68be894ae54 /ansible/test-files/docker-python
parent52e174b1f7fcd5bcc7fa1f134b9cd085a24ff642 (diff)
downloaddexon-tests-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.gz
dexon-tests-58ec49a34da85b71fe5f82b263986faa2b570eaa.tar.zst
dexon-tests-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')
-rw-r--r--ansible/test-files/docker-python/Dockerfile14
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"]