mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 12:50:49 +08:00 
			
		
		
		
	feat:fix kube config
This commit is contained in:
		@@ -1,8 +1,8 @@
 | 
			
		||||
FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
 | 
			
		||||
FROM microsoft/dotnet:2.1-aspnetcore-runtime AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
EXPOSE 80
 | 
			
		||||
 | 
			
		||||
FROM microsoft/dotnet:2.2-sdk AS build
 | 
			
		||||
FROM microsoft/dotnet:2.1-sdk AS build
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["DownstreamService/DownstreamService.csproj", "DownstreamService/"]
 | 
			
		||||
RUN dotnet restore "DownstreamService/DownstreamService.csproj"
 | 
			
		||||
@@ -16,4 +16,4 @@ RUN dotnet publish "DownstreamService.csproj" -c Release -o /app
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app .
 | 
			
		||||
ENTRYPOINT ["dotnet", "DownstreamService.dll"]
 | 
			
		||||
ENTRYPOINT ["dotnet", "DownstreamService.dll"]
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										15
									
								
								samples/OelotKube/DownstreamService/Dockerfile.develop
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								samples/OelotKube/DownstreamService/Dockerfile.develop
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
			
		||||
FROM microsoft/dotnet:2.1-sdk
 | 
			
		||||
ARG BUILD_CONFIGURATION=Debug
 | 
			
		||||
ENV ASPNETCORE_ENVIRONMENT=Development
 | 
			
		||||
ENV DOTNET_USE_POLLING_FILE_WATCHER=true
 | 
			
		||||
EXPOSE 80
 | 
			
		||||
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["DownstreamService/DownstreamService.csproj", "DownstreamService/"]
 | 
			
		||||
 | 
			
		||||
RUN dotnet restore "DownstreamService/DownstreamService.csproj"
 | 
			
		||||
COPY . .
 | 
			
		||||
WORKDIR "/src/DownstreamService"
 | 
			
		||||
RUN dotnet build --no-restore "DownstreamService.csproj" -c $BUILD_CONFIGURATION
 | 
			
		||||
 | 
			
		||||
ENTRYPOINT ["dotnet", "run", "--no-build", "--no-launch-profile", "-c", "$BUILD_CONFIGURATION", "--"]
 | 
			
		||||
		Reference in New Issue
	
	Block a user