Skip to content

Commit 69707f0

Browse files
committed
use ff version 52.0.2; install dbus to fix dbus issues; correct containers; update to cesium; add debug to hub config; add role to hub config; fix comma-separated json values
1 parent b25ff13 commit 69707f0

File tree

25 files changed

+67
-52
lines changed

25 files changed

+67
-52
lines changed

Hub/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.3.1-bohrium
5+
FROM selenium/base:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
#========================
@@ -25,6 +25,8 @@ ENV GRID_CLEAN_UP_CYCLE 5000
2525
ENV GRID_BROWSER_TIMEOUT 0
2626
# In seconds, maps to "timeout"
2727
ENV GRID_TIMEOUT 30
28+
# Debug
29+
ENV GRID_DEBUG false
2830

2931
COPY generate_config /opt/selenium/generate_config
3032
COPY entry_point.sh /opt/bin/entry_point.sh
@@ -33,4 +35,4 @@ RUN chown -R seluser /opt/selenium
3335

3436
USER seluser
3537

36-
CMD ["/opt/bin/entry_point.sh"]
38+
CMD ["/opt/bin/entry_point.sh"]

Hub/Dockerfile.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ ENV GRID_CLEAN_UP_CYCLE 5000
2020
ENV GRID_BROWSER_TIMEOUT 0
2121
# In seconds, maps to "timeout"
2222
ENV GRID_TIMEOUT 30
23+
# Debug
24+
ENV GRID_DEBUG false
2325

2426
COPY generate_config /opt/selenium/generate_config
2527
COPY entry_point.sh /opt/bin/entry_point.sh
@@ -28,4 +30,4 @@ RUN chown -R seluser /opt/selenium
2830

2931
USER seluser
3032

31-
CMD ["/opt/bin/entry_point.sh"]
33+
CMD ["/opt/bin/entry_point.sh"]

Hub/generate_config

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ echo "
44
{
55
\"host\": null,
66
\"port\": 4444,
7+
\"role\": \"hub\",
78
\"maxSession\": $GRID_MAX_SESSION,
89
\"newSessionWaitTimeout\": $GRID_NEW_SESSION_WAIT_TIMEOUT,
910
\"capabilityMatcher\": \"org.openqa.grid.internal.utils.DefaultCapabilityMatcher\",
@@ -12,5 +13,5 @@ echo "
1213
\"cleanUpCycle\": $GRID_CLEAN_UP_CYCLE,
1314
\"browserTimeout\": $GRID_BROWSER_TIMEOUT,
1415
\"timeout\": $GRID_TIMEOUT,
15-
\"prioritizer\": null,
16-
}"
16+
\"debug\": $GRID_DEBUG
17+
}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := selenium
2-
VERSION := $(or $(VERSION),$(VERSION),3.3.1-bohrium)
2+
VERSION := $(or $(VERSION),$(VERSION),3.3.1-cesium)
33
PLATFORM := $(shell uname -s)
44
BUILD_ARGS := $(BUILD_ARGS)
55
MAJOR := $(word 1,$(subst ., ,$(VERSION)))

NodeBase/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.3.1-bohrium
5+
FROM selenium/base:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
ENV DEBIAN_FRONTEND noninteractive
@@ -15,6 +15,7 @@ RUN apt-get update -qqy \
1515
&& apt-get -qqy install \
1616
locales \
1717
xvfb \
18+
dbus \
1819
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1920

2021
#==============================
@@ -36,4 +37,4 @@ ENV DISPLAY :99.0
3637

3738
USER seluser
3839

39-
CMD ["/opt/bin/entry_point.sh"]
40+
CMD ["/opt/bin/entry_point.sh"]

NodeBase/Dockerfile.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ RUN apt-get update -qqy \
1010
&& apt-get -qqy install \
1111
locales \
1212
xvfb \
13+
dbus \
1314
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1415

1516
#==============================
@@ -31,4 +32,4 @@ ENV DISPLAY :99.0
3132

3233
USER seluser
3334

34-
CMD ["/opt/bin/entry_point.sh"]
35+
CMD ["/opt/bin/entry_point.sh"]

NodeChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.3.1-bohrium
5+
FROM selenium/node-base:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

NodeChrome/generate_config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ echo "
1717
\"maxSession\": $NODE_MAX_SESSION,
1818
\"port\": $NODE_PORT,
1919
\"register\": true,
20-
\"registerCycle\": $NODE_REGISTER_CYCLE
20+
\"registerCycle\": $NODE_REGISTER_CYCLE,
2121
\"nodePolling\": $NODE_POLLING,
2222
\"unregisterIfStillDownAfter\": $NODE_UNREGISTER_IF_STILL_DOWN_AFTER,
2323
\"downPollingLimit\": $NODE_DOWN_POLLING_LIMIT
24-
}"
24+
}"

NodeChromeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome:3.3.1-bohrium
5+
FROM selenium/node-chrome:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

NodeChromeDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
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:
3939

4040
``` dockerfile
41-
FROM selenium/node-chrome-debug:3.3.1-bohrium
41+
FROM selenium/node-chrome-debug:3.3.1-cesium
4242

4343
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4444
```

NodeDebug/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
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:
3939

4040
``` dockerfile
41-
FROM selenium/##BASE##-debug:3.3.1-bohrium
41+
FROM selenium/##BASE##-debug:3.3.1-cesium
4242

4343
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4444
```

NodeFirefox/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.3.1-bohrium
5+
FROM selenium/node-base:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root
99

1010
#=========
1111
# Firefox
1212
#=========
13-
ARG FIREFOX_VERSION=52.0
13+
ARG FIREFOX_VERSION=52.0.2
1414
RUN apt-get update -qqy \
1515
&& apt-get -qqy --no-install-recommends install firefox \
1616
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
@@ -58,4 +58,8 @@ COPY generate_config /opt/selenium/generate_config
5858
RUN chmod +x /opt/selenium/generate_config \
5959
&& chown -R seluser:seluser /opt/selenium
6060

61+
# Following line fixes
62+
# https://github.com/SeleniumHQ/docker-selenium/issues/87
63+
RUN echo "DBUS_SESSION_BUS_ADDRESS=/dev/null" >> /etc/environment
64+
6165
USER seluser

NodeFirefox/Dockerfile.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ USER root
55
#=========
66
# Firefox
77
#=========
8-
ARG FIREFOX_VERSION=52.0
8+
ARG FIREFOX_VERSION=52.0.2
99
RUN apt-get update -qqy \
1010
&& apt-get -qqy --no-install-recommends install firefox \
1111
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
@@ -53,4 +53,8 @@ COPY generate_config /opt/selenium/generate_config
5353
RUN chmod +x /opt/selenium/generate_config \
5454
&& chown -R seluser:seluser /opt/selenium
5555

56+
# Following line fixes
57+
# https://github.com/SeleniumHQ/docker-selenium/issues/87
58+
RUN echo "DBUS_SESSION_BUS_ADDRESS=/dev/null" >> /etc/environment
59+
5660
USER seluser

NodeFirefox/generate_config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ echo "
1717
\"maxSession\": $NODE_MAX_SESSION,
1818
\"port\": $NODE_PORT,
1919
\"register\": true,
20-
\"registerCycle\": $NODE_REGISTER_CYCLE
20+
\"registerCycle\": $NODE_REGISTER_CYCLE,
2121
\"nodePolling\": $NODE_POLLING,
2222
\"unregisterIfStillDownAfter\": $NODE_UNREGISTER_IF_STILL_DOWN_AFTER,
2323
\"downPollingLimit\": $NODE_DOWN_POLLING_LIMIT

NodeFirefoxDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-firefox:3.3.1-bohrium
5+
FROM selenium/node-firefox:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

NodeFirefoxDebug/Dockerfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM selenium/node-firefox:3.3.1-bohrium
1+
FROM selenium/node-firefox:3.3.1-cesium
22
MAINTAINER Selenium <[email protected]>
33

44
USER root

NodeFirefoxDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
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:
3939

4040
``` dockerfile
41-
FROM selenium/node-firefox-debug:3.3.1-bohrium
41+
FROM selenium/node-firefox-debug:3.3.1-cesium
4242

4343
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4444
```

NodePhantomJS/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.3.1-bohrium
5+
FROM selenium/node-base:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Images included:
3232
When executing docker run for an image with chrome browser please add volume mount `-v /dev/shm:/dev/shm` to use the host's shared memory.
3333

3434
``` bash
35-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.3.1-bohrium
35+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.3.1-cesium
3636
```
3737

3838
This is a workaround to node-chrome crash in docker container issue: https://code.google.com/p/chromium/issues/detail?id=519952
@@ -41,9 +41,9 @@ This is a workaround to node-chrome crash in docker container issue: https://cod
4141
### Standalone Chrome and Firefox
4242

4343
``` bash
44-
$ docker run -d -p 4444:4444 selenium/standalone-chrome:3.3.1-bohrium
44+
$ docker run -d -p 4444:4444 selenium/standalone-chrome:3.3.1-cesium
4545
# OR
46-
$ docker run -d -p 4444:4444 selenium/standalone-firefox:3.3.1-bohrium
46+
$ docker run -d -p 4444:4444 selenium/standalone-firefox:3.3.1-cesium
4747
```
4848

4949
_Note: Only one standalone image can run on port_ `4444` _at a time._
@@ -53,9 +53,9 @@ To inspect visually what the browser is doing use the `standalone-chrome-debug`
5353
### Selenium Grid Hub and Nodes
5454

5555
``` bash
56-
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.3.1-bohrium
57-
$ docker run -d --link selenium-hub:hub selenium/node-chrome:3.3.1-bohrium
58-
$ docker run -d --link selenium-hub:hub selenium/node-firefox:3.3.1-bohrium
56+
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.3.1-cesium
57+
$ docker run -d --link selenium-hub:hub selenium/node-chrome:3.3.1-cesium
58+
$ docker run -d --link selenium-hub:hub selenium/node-firefox:3.3.1-cesium
5959
```
6060

6161
## Configuring the containers
@@ -65,7 +65,7 @@ $ docker run -d --link selenium-hub:hub selenium/node-firefox:3.3.1-bohrium
6565
You can pass `JAVA_OPTS` environment variable to java process.
6666

6767
``` bash
68-
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.3.1-bohrium
68+
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.3.1-cesium
6969
```
7070

7171
### SE_OPTS Selenium Configuration Options
@@ -79,7 +79,7 @@ $ docker run -d -p 4444:4444 -e SE_OPTS="-debug true" --name selenium-hub seleni
7979
### PHANTOMJS_OPTS PhantomJS Configuration Options
8080

8181
``` bash
82-
$ docker run -d -e PHANTOMJS_OPTS="--ignore-ssl-errors=true" --link selenium-hub:hub selenium/node-phantomjs:3.3.1-bohrium
82+
$ docker run -d -e PHANTOMJS_OPTS="--ignore-ssl-errors=true" --link selenium-hub:hub selenium/node-phantomjs:3.3.1-cesium
8383
```
8484

8585
You can pass `SE_OPTS` variable with additional commandline parameters for starting a PhantomJS node.
@@ -105,10 +105,10 @@ _Note: Omitting_ `VERSION=local` _will build the images with the current version
105105
##### Example: Spawn a container for testing in Chrome:
106106

107107
``` bash
108-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.3.1-bohrium
108+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.3.1-cesium
109109
$ CH=$(docker run --rm --name=ch \
110110
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
111-
selenium/node-chrome:3.3.1-bohrium)
111+
selenium/node-chrome:3.3.1-cesium)
112112
```
113113

114114
_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._
@@ -118,10 +118,10 @@ _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing brow
118118
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.
119119

120120
``` bash
121-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.3.1-bohrium
121+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.3.1-cesium
122122
$ FF=$(docker run --rm --name=fx \
123123
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
124-
selenium/node-firefox:3.3.1-bohrium)
124+
selenium/node-firefox:3.3.1-cesium)
125125
```
126126

127127
_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/)._
@@ -130,28 +130,28 @@ _Note: Since a Docker container is not meant to preserve state and spawning a ne
130130

131131
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. Example: <port4VNC>: 5900) you will only be able to run 1 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:
132132
``` bash
133-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-chrome-debug:3.3.1-bohrium
134-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-firefox-debug:3.3.1-bohrium
133+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-chrome-debug:3.3.1-cesium
134+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-firefox-debug:3.3.1-cesium
135135
```
136136
e.g.:
137137
``` bash
138-
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub selenium/node-chrome-debug:3.3.1-bohrium
139-
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub selenium/node-firefox-debug:3.3.1-bohrium
138+
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub selenium/node-chrome-debug:3.3.1-cesium
139+
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub selenium/node-firefox-debug:3.3.1-cesium
140140
```
141141

142142
to connect to the Chrome node on 5900 and the Firefox node on 5901 (assuming those node are free, and reachable).
143143

144144
And for standalone:
145145
``` bash
146-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-chrome-debug:3.3.1-bohrium
146+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-chrome-debug:3.3.1-cesium
147147
# OR
148-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-firefox-debug:3.3.1-bohrium
148+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-firefox-debug:3.3.1-cesium
149149
```
150150
or
151151
``` bash
152-
$ docker run -d -p 4444:4444 -p 5900:5900 selenium/standalone-chrome-debug:3.3.1-bohrium
152+
$ docker run -d -p 4444:4444 -p 5900:5900 selenium/standalone-chrome-debug:3.3.1-cesium
153153
# OR
154-
$ docker run -d -p 4444:4444 -p 5901:5900 selenium/standalone-firefox-debug:3.3.1-bohrium
154+
$ docker run -d -p 4444:4444 -p 5901:5900 selenium/standalone-firefox-debug:3.3.1-cesium
155155
```
156156

157157
You can acquire the port that the VNC server is exposed to by running:
@@ -170,8 +170,8 @@ If you are running [Boot2Docker](https://docs.docker.com/installation/mac/) on O
170170

171171
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:
172172
``` dockerfile
173-
#FROM selenium/node-chrome-debug:3.3.1-bohrium
174-
#FROM selenium/node-firefox-debug:3.3.1-bohrium
173+
#FROM selenium/node-chrome-debug:3.3.1-cesium
174+
#FROM selenium/node-firefox-debug:3.3.1-cesium
175175
#Choose the FROM statement that works for you.
176176

177177
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd

StandaloneChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome:3.3.1-bohrium
5+
FROM selenium/node-chrome:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

StandaloneChromeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/standalone-chrome:3.3.1-bohrium
5+
FROM selenium/standalone-chrome:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

StandaloneFirefox/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-firefox:3.3.1-bohrium
5+
FROM selenium/node-firefox:3.3.1-cesium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

0 commit comments

Comments
 (0)