Skip to content

Commit 06d5d29

Browse files
JordanJLopezJordan Lopez
andauthored
chore: Update base docker image for tests, examples (#2156)
### 📝 Description federation-integration tests are failing due to openjdk:17 not being found. <img width="1818" height="701" alt="image" src="https://github.com/user-attachments/assets/f3d1ba65-ffc9-499e-8ec8-c4f2e55262d0" /> https://github.com/ExpediaGroup/graphql-kotlin/actions/runs/22414492595/job/64897762620 This PR swaps to eclipse-temurin as the base image https://hub.docker.com/_/eclipse-temurin ### 🔗 Related Issues Co-authored-by: Jordan Lopez <jordlopez@expediagroup.com>
1 parent 6bde4b7 commit 06d5d29

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/federation/products-subgraph/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:17
1+
FROM eclipse-temurin:17
22
EXPOSE 8080
33

44
ARG JAR_FILE=build/libs/products-subgraph.jar

examples/federation/reviews-subgraph/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:17
1+
FROM eclipse-temurin:17
22
EXPOSE 8081
33

44
ARG JAR_FILE=build/libs/reviews-subgraph.jar

integration/federation-compatibility/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:17
1+
FROM eclipse-temurin:17
22

33
EXPOSE 4001
44
RUN mkdir /app

0 commit comments

Comments
 (0)