24 lines
		
	
	
		
			454 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			454 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu:14.04
 | |
| 
 | |
| # install tools and dependencies
 | |
| RUN apt-get update && \
 | |
| 	apt-get install -y \
 | |
| 	g++ \
 | |
| 	curl \
 | |
| 	git \
 | |
| 	make
 | |
| 
 | |
| # install multirust
 | |
| RUN curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
 | |
| 
 | |
| # export rust LIBRARY_PATH
 | |
| ENV LIBRARY_PATH /usr/local/lib
 | |
| 
 | |
| # show backtraces
 | |
| ENV RUST_BACKTRACE 1
 | |
| 
 | |
| # build parity
 | |
| RUN git clone https://github.com/ethcore/parity && \
 | |
| 	cd parity && \
 | |
| 	cargo build --release
 |