Skip to content

Commit 8bc7ff0

Browse files
authored
openjdk image has disappeared (#1663)
Signed-off-by: Gregor Zeitlinger <[email protected]>
1 parent f5d8a44 commit 8bc7ff0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration-tests/it-common/src/test/java/io/prometheus/client/it/common/ExporterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public ExporterTest(String sampleApp) throws IOException, URISyntaxException {
3434
Volume.create("it-exporter")
3535
.copy("../../it-" + sampleApp + "/target/" + sampleApp + ".jar");
3636
this.sampleAppContainer =
37-
new GenericContainer<>("openjdk:25")
37+
new GenericContainer<>("eclipse-temurin:25")
3838
.withFileSystemBind(sampleAppVolume.getHostPath(), "/app", BindMode.READ_ONLY)
3939
.withWorkingDirectory("/app")
4040
.withLogConsumer(LogConsumer.withPrefix(sampleApp))

integration-tests/it-pushgateway/src/test/java/io/prometheus/metrics/it/pushgateway/PushGatewayIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void setUp() throws IOException, URISyntaxException {
4141
.withLogConsumer(LogConsumer.withPrefix("pushgateway"))
4242
.waitingFor(Wait.forListeningPort());
4343
sampleAppContainer =
44-
new GenericContainer<>("openjdk:25")
44+
new GenericContainer<>("eclipse-temurin:25")
4545
.withFileSystemBind(sampleAppVolume.getHostPath(), "/app", BindMode.READ_ONLY)
4646
.withNetwork(network)
4747
.withWorkingDirectory("/app")

0 commit comments

Comments
 (0)