mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 12:10:50 +08:00 
			
		
		
		
	* feat: Kubernetes ServiceDiscoveryProvider * 编写k8s测试例子 * feat:fix kube config * feat: remove port * feat : complete the k8s test * feat : add kubeserviceDiscovery test * feat : add kube provider unittest * feat :add kubetnetes docs how to use ocelot with kubetnetes docs * keep the configuration as simple as possible, no qos, no cache * fix: use http * add PollingKubeServiceDiscovery * feat : refactor logger * feat : add pollkube docs * feat:Remove unnecessary code * feat : code-block json
		
			
				
	
	
		
			15 lines
		
	
	
		
			528 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			528 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
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", "--"] |