mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 08:55:28 +08:00 
			
		
		
		
	编写k8s测试例子
This commit is contained in:
		
							
								
								
									
										19
									
								
								samples/OelotKube/ApiGateway/Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								samples/OelotKube/ApiGateway/Dockerfile
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
			
		||||
FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
EXPOSE 80
 | 
			
		||||
 | 
			
		||||
FROM microsoft/dotnet:2.2-sdk AS build
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["ApiGateway/ApiGateway.csproj", "ApiGateway/"]
 | 
			
		||||
RUN dotnet restore "ApiGateway/ApiGateway.csproj"
 | 
			
		||||
COPY . .
 | 
			
		||||
WORKDIR "/src/ApiGateway"
 | 
			
		||||
RUN dotnet build "ApiGateway.csproj" -c Release -o /app
 | 
			
		||||
 | 
			
		||||
FROM build AS publish
 | 
			
		||||
RUN dotnet publish "ApiGateway.csproj" -c Release -o /app
 | 
			
		||||
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app .
 | 
			
		||||
ENTRYPOINT ["dotnet", "ApiGateway.dll"]
 | 
			
		||||
		Reference in New Issue
	
	Block a user