From f0c5ad45ab03e2243330a230f52658e3b435850a Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Mon, 27 Aug 2018 09:01:14 +0200 Subject: [PATCH] 3.14.0-beryllium release --- .github/ISSUE_TEMPLATE.md | 2 +- Hub/Dockerfile | 6 +-- Makefile | 2 +- NodeBase/Dockerfile | 2 +- NodeChrome/Dockerfile | 2 +- NodeChromeDebug/Dockerfile | 2 +- NodeChromeDebug/README.md | 2 +- NodeDebug/README.template.md | 2 +- NodeFirefox/Dockerfile | 2 +- NodeFirefoxDebug/Dockerfile | 2 +- NodeFirefoxDebug/README.md | 2 +- README.md | 82 +++++++++++++++---------------- StandaloneChrome/Dockerfile | 2 +- StandaloneChromeDebug/Dockerfile | 2 +- StandaloneFirefox/Dockerfile | 2 +- StandaloneFirefoxDebug/Dockerfile | 2 +- 16 files changed, 57 insertions(+), 59 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index ebde1235a..b668bc2f2 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -9,7 +9,7 @@ Image(s): Docker-Selenium Image Version(s): - + Docker Version: OS: diff --git a/Hub/Dockerfile b/Hub/Dockerfile index 6264e8c7f..471f18232 100644 --- a/Hub/Dockerfile +++ b/Hub/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/base:3.14.0-arsenic +FROM selenium/base:3.14.0-beryllium LABEL authors=SeleniumHQ USER seluser @@ -37,9 +37,7 @@ ENV GRID_HUB_HOST "0.0.0.0" COPY generate_config \ entry_point.sh \ /opt/bin/ -# Running this command as sudo just to avoid the message: -# To run a command as administrator (user "root"), use "sudo ". See "man sudo_root" for details. -# When logging into the container + RUN /opt/bin/generate_config > /opt/selenium/config.json CMD ["/opt/bin/entry_point.sh"] diff --git a/Makefile b/Makefile index 126373e59..b86a1969b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME := selenium -VERSION := $(or $(VERSION),$(VERSION),3.14.0-arsenic) +VERSION := $(or $(VERSION),$(VERSION),3.14.0-beryllium) NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME)) AUTHORS := $(or $(AUTHORS),$(AUTHORS),SeleniumHQ) PLATFORM := $(shell uname -s) diff --git a/NodeBase/Dockerfile b/NodeBase/Dockerfile index 948c43511..57666aaa5 100644 --- a/NodeBase/Dockerfile +++ b/NodeBase/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/base:3.14.0-arsenic +FROM selenium/base:3.14.0-beryllium LABEL authors=SeleniumHQ USER root diff --git a/NodeChrome/Dockerfile b/NodeChrome/Dockerfile index 43da397fe..d41e4c33d 100644 --- a/NodeChrome/Dockerfile +++ b/NodeChrome/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-base:3.14.0-arsenic +FROM selenium/node-base:3.14.0-beryllium LABEL authors=SeleniumHQ USER root diff --git a/NodeChromeDebug/Dockerfile b/NodeChromeDebug/Dockerfile index f5a017150..52ce5589b 100644 --- a/NodeChromeDebug/Dockerfile +++ b/NodeChromeDebug/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-chrome:3.14.0-arsenic +FROM selenium/node-chrome:3.14.0-beryllium LABEL authors=SeleniumHQ USER root diff --git a/NodeChromeDebug/README.md b/NodeChromeDebug/README.md index c826c96b2..a29edc7e8 100644 --- a/NodeChromeDebug/README.md +++ b/NodeChromeDebug/README.md @@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http: When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it: ``` dockerfile -FROM selenium/node-chrome-debug:3.14.0-arsenic +FROM selenium/node-chrome-debug:3.14.0-beryllium RUN x11vnc -storepasswd /home/seluser/.vnc/passwd ``` diff --git a/NodeDebug/README.template.md b/NodeDebug/README.template.md index 1e6cd6d25..f48b75222 100644 --- a/NodeDebug/README.template.md +++ b/NodeDebug/README.template.md @@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http: When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it: ``` dockerfile -FROM selenium/##BASE##-debug:3.14.0-arsenic +FROM selenium/##BASE##-debug:3.14.0-beryllium RUN x11vnc -storepasswd /home/seluser/.vnc/passwd ``` diff --git a/NodeFirefox/Dockerfile b/NodeFirefox/Dockerfile index b8d6b8947..663050ae1 100644 --- a/NodeFirefox/Dockerfile +++ b/NodeFirefox/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-base:3.14.0-arsenic +FROM selenium/node-base:3.14.0-beryllium LABEL authors=SeleniumHQ USER root diff --git a/NodeFirefoxDebug/Dockerfile b/NodeFirefoxDebug/Dockerfile index 715ca8b99..6187a5bb9 100644 --- a/NodeFirefoxDebug/Dockerfile +++ b/NodeFirefoxDebug/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-firefox:3.14.0-arsenic +FROM selenium/node-firefox:3.14.0-beryllium LABEL authors=SeleniumHQ USER root diff --git a/NodeFirefoxDebug/README.md b/NodeFirefoxDebug/README.md index a9c83f9b4..a057aa27a 100644 --- a/NodeFirefoxDebug/README.md +++ b/NodeFirefoxDebug/README.md @@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http: When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it: ``` dockerfile -FROM selenium/node-firefox-debug:3.14.0-arsenic +FROM selenium/node-firefox-debug:3.14.0-beryllium RUN x11vnc -storepasswd /home/seluser/.vnc/passwd ``` diff --git a/README.md b/README.md index b8a271b2b..207892e89 100644 --- a/README.md +++ b/README.md @@ -31,15 +31,15 @@ Images included: Chrome ``` bash -$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-arsenic +$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-beryllium #OR -$ docker run -d -p 4444:4444 --shm-size=2g selenium/standalone-chrome:3.14.0-arsenic +$ docker run -d -p 4444:4444 --shm-size=2g selenium/standalone-chrome:3.14.0-beryllium ``` Firefox ``` bash -$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-arsenic +$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-beryllium #OR -$ docker run -d -p 4444:4444 --shm-size 2g selenium/standalone-firefox:3.14.0-arsenic +$ docker run -d -p 4444:4444 --shm-size 2g selenium/standalone-firefox:3.14.0-beryllium ``` This is a known workaround to avoid the browser crashing inside a docker container, here are the documented issues for [Chrome](https://code.google.com/p/chromium/issues/detail?id=519952) and [Firefox](https://bugzilla.mozilla.org/show_bug.cgi?id=1338771#c10). @@ -50,9 +50,9 @@ to tune this value according to your needs. Along the examples `-v /dev/shm:/dev ### Standalone Chrome and Firefox ``` bash -$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-arsenic +$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.14.0-beryllium # OR -$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-arsenic +$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.14.0-beryllium ``` _Note: Only one standalone image can run on port_ `4444` _at a time._ @@ -68,9 +68,9 @@ A docker [network](https://docs.docker.com/engine/reference/commandline/network_ ``` bash $ docker network create grid -$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub:3.14.0-arsenic -$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-arsenic -$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-arsenic +$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub:3.14.0-beryllium +$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-beryllium +$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-beryllium ``` When you are done using the grid and the containers have exited, the network can be removed with the following command: @@ -94,7 +94,7 @@ snippet as your `docker-compose.yaml`, save it locally and in the same folder ru version: '2' services: firefox: - image: selenium/node-firefox:3.14.0-arsenic + image: selenium/node-firefox:3.14.0-beryllium volumes: - /dev/shm:/dev/shm depends_on: @@ -103,7 +103,7 @@ services: HUB_HOST: hub chrome: - image: selenium/node-chrome:3.14.0-arsenic + image: selenium/node-chrome:3.14.0-beryllium volumes: - /dev/shm:/dev/shm depends_on: @@ -112,7 +112,7 @@ services: HUB_HOST: hub hub: - image: selenium/hub:3.14.0-arsenic + image: selenium/hub:3.14.0-beryllium ports: - "4444:4444" ``` @@ -124,19 +124,19 @@ services: version: "3" services: selenium-hub: - image: selenium/hub:3.14.0-arsenic + image: selenium/hub:3.14.0-beryllium container_name: selenium-hub ports: - "4444:4444" chrome: - image: selenium/node-chrome:3.14.0-arsenic + image: selenium/node-chrome:3.14.0-beryllium depends_on: - selenium-hub environment: - HUB_HOST=selenium-hub - HUB_PORT=4444 firefox: - image: selenium/node-firefox:3.14.0-arsenic + image: selenium/node-firefox:3.14.0-beryllium depends_on: - selenium-hub environment: @@ -152,9 +152,9 @@ for longer term usage since this is a docker [legacy feature](https://docs.docke It could serve you as an option for a proof of concept, and for simplicity it is used in the examples shown from now on. ``` bash -$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.14.0-arsenic -$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-arsenic -$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-arsenic +$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.14.0-beryllium +$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-beryllium +$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-beryllium ``` ## Configuring the containers @@ -164,7 +164,7 @@ $ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firef You can pass `JAVA_OPTS` environment variable to java process. ``` bash -$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.14.0-arsenic +$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.14.0-beryllium ``` ### SE_OPTS Selenium Configuration Options @@ -172,7 +172,7 @@ $ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/ You can pass `SE_OPTS` variable with additional commandline parameters for starting a hub or a node. ``` bash -$ docker run -d -p 4444:4444 -e SE_OPTS="-debug" --name selenium-hub selenium/hub:3.14.0-arsenic +$ docker run -d -p 4444:4444 -e SE_OPTS="-debug" --name selenium-hub selenium/hub:3.14.0-beryllium ``` ### Selenium Hub and Node Configuration options @@ -184,7 +184,7 @@ You can pass the `HUB_HOST` and `HUB_PORT` options to provide the hub address to ``` bash # Assuming a hub was already started -$ docker run -d -e HUB_HOST= -e HUB_PORT=4444 selenium/node-chrome:3.14.0-arsenic +$ docker run -d -e HUB_HOST= -e HUB_PORT=4444 selenium/node-chrome:3.14.0-beryllium ``` Some network topologies might prevent the hub to reach the node through the url given at registration time, `REMOTE_HOST` @@ -192,7 +192,7 @@ can be used to supply the hub a url where the node is reachable under your speci ``` bash # Assuming a hub was already started -$ docker run -d -e HUB_HOST= -e REMOTE_HOST="http://node_ip|node_name:node_port" selenium/node-firefox:3.14.0-arsenic +$ docker run -d -e HUB_HOST= -e REMOTE_HOST="http://node_ip|node_name:node_port" selenium/node-firefox:3.14.0-beryllium ``` ### Setting Screen Resolution @@ -213,7 +213,7 @@ environment variable `NODE_MAX_INSTANCES`. For example, a Firefox node with 5 sl ``` bash # Assuming a hub was already started -$ docker run -d -e HUB_HOST= -e NODE_MAX_INSTANCES=5 selenium/node-firefox:3.14.0-arsenic +$ docker run -d -e HUB_HOST= -e NODE_MAX_INSTANCES=5 selenium/node-firefox:3.14.0-beryllium ``` Don't forget to combine this with the environment variable `NODE_MAX_SESSION`, which sets the maximum amount of tests @@ -222,7 +222,7 @@ should also be at least 5. Full example: ``` bash # Assuming a hub was already started -$ docker run -d -e HUB_HOST= -e NODE_MAX_INSTANCES=5 -e NODE_MAX_SESSION=5 selenium/node-firefox:3.14.0-arsenic +$ docker run -d -e HUB_HOST= -e NODE_MAX_INSTANCES=5 -e NODE_MAX_SESSION=5 selenium/node-firefox:3.14.0-beryllium ``` ## Building the images @@ -246,11 +246,11 @@ _Note: Omitting_ `VERSION=local` _will build the images with the current version ##### Example: Spawn a container for testing in Chrome: ``` bash -$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-arsenic +$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-beryllium $ CH=$(docker run --rm --name=ch \ --link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \ -v /dev/shm:/dev/shm \ - selenium/node-chrome:3.14.0-arsenic) + selenium/node-chrome:3.14.0-beryllium) ``` _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing browser uploads on your web app you will probably need to share a directory for this._ @@ -260,11 +260,11 @@ _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing brow This command line is the same as for Chrome. Remember that the Selenium running container is able to launch either Chrome or Firefox, the idea around having 2 separate containers, one for each browser is for convenience plus avoiding certain `:focus` issues your web app may encounter during end-to-end test automation. ``` bash -$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-arsenic +$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.14.0-beryllium $ FF=$(docker run --rm --name=fx \ --link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \ -v /dev/shm:/dev/shm \ - selenium/node-firefox:3.14.0-arsenic) + selenium/node-firefox:3.14.0-beryllium) ``` _Note: Since a Docker container is not meant to preserve state and spawning a new one takes less than 3 seconds you will likely want to remove containers after each end-to-end test with_ `--rm` _command. You need to think of your Docker containers as single processes, not as running virtual machines, in case you are familiar with [Vagrant](https://www.vagrantup.com/)._ @@ -315,9 +315,9 @@ $ docker network create grid $ docker run -d -p 4444:4444 --net grid --name selenium-hub \ --health-cmd='/opt/bin/check-grid.sh --host 0.0.0.0 --port 4444' \ --health-interval=15s --health-timeout=30s --health-retries=5 \ - selenium/hub:3.14.0-arsenic -$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-arsenic -$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-arsenic + selenium/hub:3.14.0-beryllium +$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.14.0-beryllium +$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.14.0-beryllium ``` **Note:** The `\` line delimiter won't work on Windows based terminals, try either `^` or a backtick. @@ -368,27 +368,27 @@ Like this, the script will poll until the Grid is ready, and then your tests wil In the event you wish to visually see what the browser is doing you will want to run the `debug` variant of node or standalone images. A VNC server will run on port 5900. You are free to map that to any free external port that you wish. Keep in mind that you will only be able to run one node per port so if you wish to include a second node, or more, you will have to use different ports, the 5900 as the internal port will have to remain the same though as thats the VNC service on the node. The second example below shows how to run multiple nodes and with different VNC ports open: ``` bash -$ docker run -d -P -p :5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-arsenic -$ docker run -d -P -p :5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-arsenic +$ docker run -d -P -p :5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-beryllium +$ docker run -d -P -p :5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-beryllium ``` e.g.: ``` bash -$ docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-arsenic -$ docker run -d -P -p 5901:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-arsenic +$ docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.14.0-beryllium +$ docker run -d -P -p 5901:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.14.0-beryllium ``` to connect to the Chrome node on 5900 and the Firefox node on 5901 (assuming those node are free, and reachable). And for standalone: ``` bash -$ docker run -d -p 4444:4444 -p :5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-arsenic +$ docker run -d -p 4444:4444 -p :5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-beryllium # OR -$ docker run -d -p 4444:4444 -p :5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-arsenic +$ docker run -d -p 4444:4444 -p :5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-beryllium ``` or ``` bash -$ docker run -d -p 4444:4444 -p 5900:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-arsenic +$ docker run -d -p 4444:4444 -p 5900:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.14.0-beryllium # OR -$ docker run -d -p 4444:4444 -p 5901:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-arsenic +$ docker run -d -p 4444:4444 -p 5901:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-beryllium ``` You can acquire the port that the VNC server is exposed to by running: @@ -407,8 +407,8 @@ If you are running [Boot2Docker](https://docs.docker.com/installation/mac/) on O When you are prompted for the password it is `secret`. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a Docker image that derives from the posted ones which reconfigures it: ``` dockerfile -#FROM selenium/node-chrome-debug:3.14.0-arsenic -#FROM selenium/node-firefox-debug:3.14.0-arsenic +#FROM selenium/node-chrome-debug:3.14.0-beryllium +#FROM selenium/node-firefox-debug:3.14.0-beryllium #Choose the FROM statement that works for you. RUN x11vnc -storepasswd /home/seluser/.vnc/passwd diff --git a/StandaloneChrome/Dockerfile b/StandaloneChrome/Dockerfile index 8eb90a440..3b2bb6924 100644 --- a/StandaloneChrome/Dockerfile +++ b/StandaloneChrome/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-chrome:3.14.0-arsenic +FROM selenium/node-chrome:3.14.0-beryllium LABEL authors=SeleniumHQ USER seluser diff --git a/StandaloneChromeDebug/Dockerfile b/StandaloneChromeDebug/Dockerfile index ce871642c..b6c8c3171 100644 --- a/StandaloneChromeDebug/Dockerfile +++ b/StandaloneChromeDebug/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-chrome-debug:3.14.0-arsenic +FROM selenium/node-chrome-debug:3.14.0-beryllium LABEL authors=SeleniumHQ USER seluser diff --git a/StandaloneFirefox/Dockerfile b/StandaloneFirefox/Dockerfile index af5a054d9..9e0c154bd 100644 --- a/StandaloneFirefox/Dockerfile +++ b/StandaloneFirefox/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-firefox:3.14.0-arsenic +FROM selenium/node-firefox:3.14.0-beryllium LABEL authors=SeleniumHQ USER seluser diff --git a/StandaloneFirefoxDebug/Dockerfile b/StandaloneFirefoxDebug/Dockerfile index 77fb8b080..0bfcf7901 100644 --- a/StandaloneFirefoxDebug/Dockerfile +++ b/StandaloneFirefoxDebug/Dockerfile @@ -2,7 +2,7 @@ # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -FROM selenium/node-firefox-debug:3.14.0-arsenic +FROM selenium/node-firefox-debug:3.14.0-beryllium LABEL authors=SeleniumHQ USER seluser