Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update openjdk docker tag to v25 #216

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion brightnessService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS brightness_service
FROM openjdk:25 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
2 changes: 1 addition & 1 deletion clientCommunicationGateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS client_communication_gateway
FROM openjdk:25 AS client_communication_gateway
WORKDIR /
ADD build/libs/clientCommunicationGateway-0.1.0-all.jar clientCommunicationGateway-0.1.0-all.jar
CMD java -jar clientCommunicationGateway-0.1.0-all.jar
Expand Down
2 changes: 1 addition & 1 deletion greenhouseCommunicationGateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS greenhouse_communication_gateway
FROM openjdk:25 AS greenhouse_communication_gateway
WORKDIR /
ADD build/libs/greenhouseCommunicationGateway-0.1.0-all.jar greenhouseCommunicationGateway-0.1.0-all.jar
CMD java -jar greenhouseCommunicationGateway-0.1.0-all.jar
Expand Down
2 changes: 1 addition & 1 deletion greenhouseService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS greenhouse_service
FROM openjdk:25 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
2 changes: 1 addition & 1 deletion humidityService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS humidity_service
FROM openjdk:25 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
2 changes: 1 addition & 1 deletion operationService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS operation_service
FROM openjdk:25 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
2 changes: 1 addition & 1 deletion soilMoistureService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS soil_moisture_service
FROM openjdk:25 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
2 changes: 1 addition & 1 deletion temperatureService/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:24 AS temperature_service
FROM openjdk:25 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
Loading