github.com/karalabe/go-ethereum@v0.8.5/tests/files/ansible/test-files/docker-python/Dockerfile (about)

     1  FROM sveneh/pyethereum-base
     2  
     3  RUN git clone --branch master https://github.com/ethereum/pyethereum.git
     4  
     5  RUN cd pyethereum && curl https://bootstrap.pypa.io/bootstrap-buildout.py | python
     6  
     7  RUN cd pyethereum && bin/buildout
     8  
     9  #default port for incoming requests
    10  EXPOSE 30303
    11  
    12  WORKDIR /pyethereum/bin 
    13  
    14  ENTRYPOINT ["./python", "../tests/test_vm.py"]