We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2628d1 commit b67b2b1Copy full SHA for b67b2b1
test/lib/jdk/test/lib/containers/docker/DockerfileConfig.java
@@ -52,7 +52,7 @@ static String getBaseImageName() {
52
case "s390x":
53
return "s390x/ubuntu";
54
default:
55
- return "oraclelinux";
+ return "ubuntu";
56
}
57
58
@@ -63,13 +63,6 @@ static String getBaseImageVersion() {
63
return version;
64
65
66
- switch (Platform.getOsArch()) {
67
- case "aarch64":
68
- case "ppc64le":
69
- case "s390x":
70
- return "latest";
71
- default:
72
- return "7.6";
73
- }
+ return "latest";
74
75
0 commit comments