Skip to content

Commit 3b565aa

Browse files
committed
docs: Update comments in Dockerfiles
1 parent 4a8f357 commit 3b565aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/order/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Stage 1: Build the application using a Gradle image with JDK 21.
1+
# Stage 1: Build the application using a Gradle image with JDK.
22
FROM gradle:9.2.0-jdk21-corretto AS builder
33
WORKDIR /home/gradle/project
44

@@ -22,7 +22,7 @@ COPY . .
2222
# Exclude tests to speed up the build.
2323
RUN ./gradlew --no-daemon :order:clean :order:build -x test
2424

25-
# Stage 2: Package the application into a runtime image using temurin JRE 25.
25+
# Stage 2: Package the application into a runtime image using temurin JRE.
2626
FROM eclipse-temurin:25-jre-jammy
2727
WORKDIR /app
2828

docker/payment/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Stage 1: Build the application using a Gradle image with JDK 21.
1+
# Stage 1: Build the application using a Gradle image with JDK.
22
FROM gradle:9.2.0-jdk21-corretto AS builder
33
WORKDIR /home/gradle/project
44

@@ -22,7 +22,7 @@ COPY . .
2222
# Exclude tests to speed up the build.
2323
RUN ./gradlew --no-daemon :payment:clean :payment:build -x test
2424

25-
# Stage 2: Package the application into a runtime image using temurin JRE 25.
25+
# Stage 2: Package the application into a runtime image using temurin JRE.
2626
FROM eclipse-temurin:25-jre-jammy
2727
WORKDIR /app
2828

0 commit comments

Comments
 (0)