8265690: Use the latest Ubuntu base image version in Docker testing

Reviewed-by: sgehwolf, iignatyev, mseledtsov
This commit is contained in:
Aleksey Shipilev 2021-04-27 16:36:15 +00:00
parent b2628d15b5
commit b67b2b1645

View File

@ -52,7 +52,7 @@ public class DockerfileConfig {
case "s390x": case "s390x":
return "s390x/ubuntu"; return "s390x/ubuntu";
default: default:
return "oraclelinux"; return "ubuntu";
} }
} }
@ -63,13 +63,6 @@ public class DockerfileConfig {
return version; return version;
} }
switch (Platform.getOsArch()) { return "latest";
case "aarch64":
case "ppc64le":
case "s390x":
return "latest";
default:
return "7.6";
}
} }
} }