java spring boot, update nginx and docker compose

This commit is contained in:
MAThass 2025-11-24 23:32:48 +01:00
parent 038cb33910
commit 5f198cfc20
6 changed files with 105 additions and 0 deletions

8
java/Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM maven:3.9.6-eclipse-temurin-21
WORKDIR /app
COPY . .
RUN mvn clean package -DskipTests
ENTRYPOINT ["java", "-jar", "target/spring-boot-0.0.1-SNAPSHOT.jar"]