12 lines
306 B
Docker
12 lines
306 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 \
|
|
-Dfritteli.maze.maxheight=256 \
|
|
-Dfritteli.maze.maxwidth=256 \
|
|
-jar /app/app.jar
|