All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			217 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			217 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM eclipse-temurin:21-jre
 | |
| 
 | |
| COPY target/maze-server-*.jar /app/
 | |
| RUN rm /app/*-sources.jar
 | |
| RUN mv /app/*.jar /app/app.jar
 | |
| 
 | |
| CMD java -Dfritteli.maze.server.host=0.0.0.0 -Dfritteli.maze.server.port=80 -jar /app/app.jar
 |