Skip to content

Instantly share code, notes, and snippets.

View JorritvandenBerg's full-sized avatar

Jorrit van den Berg JorritvandenBerg

View GitHub Profile
@JorritvandenBerg
JorritvandenBerg / Dockerfile
Last active February 24, 2018 19:47
NEO private network with neo-python container
FROM ubuntu:16.04
RUN apt-get update && apt-get -y install git python3-dev python3-pip libleveldb-dev libssl-dev screen
RUN git clone https://github.com/CityOfZion/neo-python.git
WORKDIR /neo-python
RUN pip3 install -r requirements.txt
@JorritvandenBerg
JorritvandenBerg / Dockerfile
Last active February 26, 2018 05:40
Automatic one-time bootstrapping of NEO test chain in Docker (please check README)
FROM ubuntu:16.04
RUN apt-get update && apt-get -y install git python3-dev python3-pip libleveldb-dev libssl-dev screen
RUN git clone https://github.com/CityOfZion/neo-python.git
WORKDIR /neo-python
RUN git checkout development
RUN pip3 install -r requirements.txt