-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update openjdk docker tag to v24 (#210)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
808f5a6
commit b8698ce
Showing
8 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:23 AS brightness_service | ||
FROM openjdk:24 AS brightness_service | ||
WORKDIR / | ||
ADD build/libs/brightnessService-0.1.0-all.jar brightnessService-0.1.0-all.jar | ||
CMD java -jar brightnessService-0.1.0-all.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:23 AS greenhouse_service | ||
FROM openjdk:24 AS greenhouse_service | ||
WORKDIR / | ||
ADD build/libs/greenhouseService-0.1.0-all.jar greenhouseService-0.1.0-all.jar | ||
CMD java -jar greenhouseService-0.1.0-all.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:23 AS humidity_service | ||
FROM openjdk:24 AS humidity_service | ||
WORKDIR / | ||
ADD build/libs/humidityService-0.1.0-all.jar humidityService-0.1.0-all.jar | ||
CMD java -jar humidityService-0.1.0-all.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:23 AS operation_service | ||
FROM openjdk:24 AS operation_service | ||
WORKDIR / | ||
ADD build/libs/operationService-0.1.0-all.jar operationService-0.1.0-all.jar | ||
CMD java -jar operationService-0.1.0-all.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:23 AS soil_moisture_service | ||
FROM openjdk:24 AS soil_moisture_service | ||
WORKDIR / | ||
ADD build/libs/soilMoistureService-0.1.0-all.jar soilMoistureService-0.1.0-all.jar | ||
CMD java -jar soilMoistureService-0.1.0-all.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:23 AS temperature_service | ||
FROM openjdk:24 AS temperature_service | ||
WORKDIR / | ||
ADD build/libs/temperatureService-0.1.0-all.jar temperatureService-0.1.0-all.jar | ||
CMD java -jar temperatureService-0.1.0-all.jar |