This commit is contained in:
Hymmel 2026-02-10 14:56:42 +01:00
parent 623c29e6ab
commit 9a99646954
7 changed files with 8 additions and 1 deletions

Binary file not shown.

View file

@ -0,0 +1,5 @@
#Generated by Maven
#Tue Feb 10 14:54:37 CET 2026
artifactId=ai-client
groupId=com.lona.tictactoe
version=1.0-SNAPSHOT

View file

@ -0,0 +1 @@
com/lona/tictactoe/client/Main.class

View file

@ -0,0 +1 @@
/home/collin/tictactoe/ai-client/src/main/java/com/lona/tictactoe/client/Main.java

Binary file not shown.

View file

@ -8,6 +8,6 @@ FROM eclipse-temurin:17-jre
WORKDIR /app WORKDIR /app
COPY --from=build /app/target/web-client-1.0-SNAPSHOT.jar app.jar COPY --from=build /app/target/web-client-1.0-SNAPSHOT.jar app.jar
EXPOSE 8080 EXPOSE 8080
ENV GAME_SERVER_HOST=server ENV GAME_SERVER_HOST=38.242.130.81
ENV GAME_SERVER_PORT=1870 ENV GAME_SERVER_PORT=1870
CMD ["java", "-jar", "app.jar"] CMD ["java", "-jar", "app.jar"]