mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 16:26:03 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			257 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			257 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # Azure pipeline require glibc based image
 | |
| FROM debian:buster-slim
 | |
| 
 | |
| RUN apt update && \
 | |
|     apt install -y git make gcc python && \
 | |
|     apt clean && \
 | |
|     rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| RUN mkdir -p ~/.ssh && \
 | |
|     ssh-keyscan github.com >> ~/.ssh/known_hosts | 
