maze-server/docker/Dockerfile
Manuel Friedli 1ee2b68471
All checks were successful
continuous-integration/drone/push Build is passing
Make copying resources to the doecker image more robust.
2026-01-24 01:40:07 +01:00

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