mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			118 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			118 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM mcr.microsoft.com/dotnet/sdk:5.0
 | |
| WORKDIR /usr/src/app
 | |
| COPY ./ ./
 | |
| RUN dotnet restore
 | |
| ENTRYPOINT ["dotnet", "run"]
 |