mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			223 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			223 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env sh
 | |
| 
 | |
| set -e
 | |
| 
 | |
| docker build -t ethereum/solc:build -f scripts/Dockerfile .
 | |
| tmp_container=$(docker create ethereum/solc:build sh)
 | |
| mkdir -p upload
 | |
| docker cp ${tmp_container}:/usr/bin/solc upload/solc-static-linux
 |