We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57ae83f commit 680e83cCopy full SHA for 680e83c
Dockerfile
@@ -5,7 +5,7 @@ COPY . .
5
RUN gradle clean :bot:build :plugin-paper:build --no-daemon
6
7
# We use a jammy image because we need some more stuff than alpine provides
8
-FROM eclipse-temurin:21-jammy as runtime
+FROM eclipse-temurin:22-jammy as runtime
9
10
WORKDIR /app
11
RUN apt update
bot/src/main/java/de/chojo/gamejam/server/TeamServer.java
@@ -182,6 +182,7 @@ public boolean start() {
182
command.add("-Dpluginjam.team.name=" + teamName());
183
command.add("-Djavalin.port=" + apiPort);
184
command.add("-Dcom.mojang.eula.agree=true");
185
+ command.add("--enable-preview");
186
command.add("-jar");
187
command.add("server.jar");
188
command.add("--max-players");
0 commit comments