mirror of
				https://github.com/yummy4friends/y4f.git
				synced 2025-10-31 15:57:57 +01:00 
			
		
		
		
	* Add Docker capabilities Changed launchSettings Added Dockerfile && docker-compose with traefik labels * Relocate launchSettings.json * Delete workflows Not needed anymore * Add Docker for WebApi Added docker-compose && Dockerfile * Fix minor mistakes --------- Co-authored-by: ProfessionalUwU <andre.fuhry@hopeless-cloud.xyz>
		
			
				
	
	
		
			6 lines
		
	
	
		
			149 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			149 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM mcr.microsoft.com/dotnet/sdk:7.0
 | |
| WORKDIR /App
 | |
| COPY . ./
 | |
| RUN dotnet restore
 | |
| EXPOSE 5248
 | |
| CMD /usr/bin/dotnet run --project /App/src/y4f/y4f.csproj |