mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			330 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			330 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu:artful
 | |
| 
 | |
| RUN apt update
 | |
| RUN apt -y install libleveldb-dev cmake g++ git
 | |
| RUN git clone --recursive https://github.com/ethereum/cpp-ethereum --branch develop --single-branch --depth 1
 | |
| RUN mkdir /build && cd /build && cmake /cpp-ethereum -DCMAKE_BUILD_TYPE=RelWithDebInfo -DTOOLS=Off -DTESTS=Off
 | |
| RUN cd /build && make eth
 |