Rename all occurrences of "labyrinth" to maze and update dependencies.

This commit is contained in:
Manuel Friedli 2023-05-16 03:01:48 +02:00
parent d9613b03ca
commit ca8f2bfec7
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
18 changed files with 129 additions and 129 deletions

View file

@ -1,7 +1,7 @@
FROM openjdk:17-slim
COPY target/labyrinth-server-*.jar /app/
COPY target/maze-server-*.jar /app/
RUN rm /app/*-sources.jar
RUN mv /app/*.jar /app/app.jar
CMD java -Dfritteli.labyrinth.server.host=0.0.0.0 -Dfritteli.labyrinth.server.port=80 -jar /app/app.jar
CMD java -Dfritteli.maze.server.host=0.0.0.0 -Dfritteli.maze.server.port=80 -jar /app/app.jar