aboutsummaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorsveneh <sven@ethdev.com>2015-02-05 19:31:49 +0800
committersveneh <sven@ethdev.com>2015-02-05 19:31:49 +0800
commitaf21a32cef9e556d2753393f2e395f35a45cba31 (patch)
tree2be7e0c56c4e18f5b5872575c736b335bd689856 /ansible
parent5235124460fd0de55c07cd6aae9638e94272ff19 (diff)
downloaddexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.tar
dexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.tar.gz
dexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.tar.bz2
dexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.tar.lz
dexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.tar.xz
dexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.tar.zst
dexon-tests-af21a32cef9e556d2753393f2e395f35a45cba31.zip
enabled tests
Diffstat (limited to 'ansible')
-rw-r--r--ansible/test-files/docker-python/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/ansible/test-files/docker-python/Dockerfile b/ansible/test-files/docker-python/Dockerfile
index 23d990789..e83faf3d6 100644
--- a/ansible/test-files/docker-python/Dockerfile
+++ b/ansible/test-files/docker-python/Dockerfile
@@ -9,7 +9,7 @@ RUN apt-get install -qy curl git python2.7 python-pip python-dev
# this is a workaround, to make sure that docker's cache is invalidated whenever the git repo changes
ADD https://api.github.com/repos/ethereum/pyethereum/git/refs/heads/develop unused.txt
-RUN git clone --branch develop https://github.com/ethereum/pyethereum.git
+RUN git clone --branch develop --recursive https://github.com/ethereum/pyethereum.git
RUN cd pyethereum && curl https://bootstrap.pypa.io/bootstrap-buildout.py | python
@@ -18,6 +18,6 @@ RUN cd pyethereum && bin/buildout
#default port for incoming requests
EXPOSE 30303
-WORKDIR /pyethereum/bin
+WORKDIR /pyethereum
-ENTRYPOINT ["./python", "../tests/test_vm.py"]
+ENTRYPOINT ["bin/python", "tests/test_vm.py"]