aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/test-files/docker-python/Dockerfile
blob: 0265f120b16090f66097f1fadbbe4b447ebc3eb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"]