All checks were successful
continuous-integration/drone/push Build is passing
10 lines
268 B
Docker
10 lines
268 B
Docker
FROM eclipse-temurin:25-jre-alpine
|
|
|
|
COPY target/maze-server-shaded.jar /app/app.jar
|
|
|
|
CMD java \
|
|
-Dfritteli.maze.server.host=0.0.0.0 \
|
|
-Dfritteli.maze.server.port=80 \
|
|
-Dfritteli.maze.maxheight=256 \
|
|
-Dfritteli.maze.maxwidth=256 \
|
|
-jar /app/app.jar
|