aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/ansible/test-files/docker-python/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/files/ansible/test-files/docker-python/Dockerfile')
-rw-r--r--tests/files/ansible/test-files/docker-python/Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/files/ansible/test-files/docker-python/Dockerfile b/tests/files/ansible/test-files/docker-python/Dockerfile
new file mode 100644
index 000000000..0265f120b
--- /dev/null
+++ b/tests/files/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"]