```dockerfile
FROM gcc
RUN apt-get update && apt-get install && apt-get install git && apt-get install cmake -y
RUN git clone https://github.com/rpclib/rpclib.git && cd rpclib && mkdir build && cd build && cmake .. && cmake --build . && make install
RUN apt-get install python3 -y && apt-get install python3-pip -y && pip install msgpack-rpc-python
CMD /bin/sh
```
## How to start
copy the Dockerfile above.
`docker build -t chord .`
`docker run -it --rm -v "$(pwd)"/:/code --name chord chord `
`$ cd code`
>code contain all of your code under the path you run your container