31 lines
		
	
	
	
		
			752 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			752 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
 | |
| WORKDIR /src
 | |
| 
 | |
| COPY ["turf_tasker/turf_tasker.csproj", "turf_tasker/"]
 | |
| RUN dotnet restore "turf_tasker/turf_tasker.csproj"
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| WORKDIR "/src/turf_tasker"
 | |
| 
 | |
| RUN dotnet build "turf_tasker.csproj" -c Release -o /app/build
 | |
| 
 | |
| FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish
 | |
| WORKDIR /src
 | |
| 
 | |
| COPY --from=build "/src/turf_tasker/turf_tasker.csproj" "turf_tasker/"
 | |
| RUN dotnet restore "turf_tasker/turf_tasker.csproj"
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| WORKDIR "/src/turf_tasker"
 | |
| RUN dotnet publish "turf_tasker.csproj" -c Release -o /app/publish /p:UserAppHost=false
 | |
| 
 | |
| FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
 | |
| WORKDIR /app
 | |
| 
 | |
| COPY --from=publish /app/publish .
 | |
| 
 | |
| COPY turf_tasker.db .
 | |
| 
 | |
| ENTRYPOINT ["dotnet", "turf_tasker.dll"]
 | 
