You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					16 lines
				
				305 B
			
		
		
			
		
	
	
					16 lines
				
				305 B
			| 
								 
											3 years ago
										 
									 | 
							
								FROM adoptopenjdk/openjdk8-openj9:alpine-slim
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								MAINTAINER smallchill@163.com
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN mkdir -p /blade/gateway
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								WORKDIR /blade/gateway
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								EXPOSE 80
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ADD ./target/blade-gateway.jar ./app.jar
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								CMD ["--spring.profiles.active=test"]
							 |