Skip to content
Closed
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
4 changes: 2 additions & 2 deletions observation-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amazoncorretto:21 as builder
FROM amazoncorretto:25 as builder

RUN yum update -y && yum clean all

Expand All @@ -16,7 +16,7 @@ WORKDIR /usr/src/

#Build person service along with any required libraries
RUN ./gradlew :observation-service:buildNeeded -x test --no-daemon
FROM amazoncorretto:21
FROM amazoncorretto:25
RUN yum update -y && yum clean all
COPY --from=builder /usr/src/observation-service/build/libs/observation-service*.jar observation-service.jar

Expand Down
Loading