Very simple way to specify the algorithm to use to generate mazes.
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
a613a92adb
commit
c4d707d64a
5 changed files with 62 additions and 4 deletions
|
@ -4,4 +4,9 @@ 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
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue