forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
345 B
14 lines
345 B
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"]
|
|
|