From a84e7c9fbad1aeb9dddd36cda751b4006c0672a2 Mon Sep 17 00:00:00 2001 From: mmuller Date: Thu, 25 Apr 2019 12:34:13 -0700 Subject: [PATCH] Pin to a tagged selenium docker image The latest version of the selenium/standalone-chrome docker image appears to be out of sync with the API that we're using and there is no more recent version of the API available in maven central. This change pins us to the earlier version and fixes our CI build. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=245286532 --- javatests/google/registry/webdriver/DockerWebDriverRule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javatests/google/registry/webdriver/DockerWebDriverRule.java b/javatests/google/registry/webdriver/DockerWebDriverRule.java index 73400f044..b987f0ac8 100644 --- a/javatests/google/registry/webdriver/DockerWebDriverRule.java +++ b/javatests/google/registry/webdriver/DockerWebDriverRule.java @@ -40,7 +40,7 @@ class DockerWebDriverRule extends ExternalResource { private static URL getWebDriverUrl() { GenericContainer container = - new GenericContainer("selenium/standalone-chrome") + new GenericContainer("selenium/standalone-chrome:3.141.59-mercury") .withFileSystemBind("/dev/shm", "/dev/shm", BindMode.READ_WRITE) .withExposedPorts(CHROME_DRIVER_SERVICE_PORT) .waitingFor(Wait.forHttp("/").withStartupTimeout(Duration.of(20, ChronoUnit.SECONDS)));