Skip to content

Commit ebc8d46

Browse files
committed
fix: dockerfiles
1 parent 14a6219 commit ebc8d46

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For development was the Eclipse ide used.
3838
All Microservices use the Clean Architecture with the Rings Adapter, Usecase, Domain to structure the code. The Dtos for the Rest controllers and the Mqtt clients are decoupled by Mappers to be able to change interfaces and database tables independently. The dependency management is done by injection. The communication between microservices is done with MQTT and Apache Artemis.
3939

4040
## Run the System
41-
- Build the system with:
41+
- Build the system with Jdk 24 due to missing Kotlin Compiler support for Jdk 25(The bytecode of all Jars can be run on Jdk 25):
4242

4343
./gradlew clean build -PwithAngular=true -PwithNestJs=true
4444

hotelSelection-backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:24-jdk-alpine
1+
FROM eclipse-temurin:25-jdk-alpine
22
VOLUME /tmp
33
RUN sh -c 'touch /app.jar'
44
ARG JAR_FILE

payment-backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:24-jdk-alpine
1+
FROM eclipse-temurin:25-jdk-alpine
22
VOLUME /tmp
33
RUN sh -c 'touch /app.jar'
44
ARG JAR_FILE

0 commit comments

Comments
 (0)