mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			127 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			127 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM mono:6.12.0
 | 
						|
WORKDIR /usr/src/app
 | 
						|
COPY ./ ./
 | 
						|
RUN mcs ./Solution.cs -out:Solution.exe
 | 
						|
ENTRYPOINT ["mono", "./Solution.exe"]
 |