Skip to content

Commit 55704a3

Browse files
committed
3.10.0-argon release
1 parent c39dbbd commit 55704a3

File tree

16 files changed

+50
-50
lines changed

16 files changed

+50
-50
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Image(s):
33
<!-- node-chrome? hub? standalone-firefox? -->
44
Docker-Selenium Image Version(s):
5-
<!-- 3, 3.4, 3.9.1-actinium etc -->
5+
<!-- 3, 3.4, 3.10.0-argon etc -->
66
Docker Version:
77
<!-- 17.09.0-ce, 17.06.2-ce etc -->
88
OS:

Hub/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/base:3.9.1-actinium
5+
FROM selenium/base:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER seluser

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.9.1-actinium)
2+
VERSION := $(or $(VERSION),$(VERSION),3.10.0-argon)
33
NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME))
44
AUTHORS := $(or $(AUTHORS),$(AUTHORS),SeleniumHQ)
55
PLATFORM := $(shell uname -s)

NodeBase/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/base:3.9.1-actinium
5+
FROM selenium/base:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER root

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.9.1-actinium
5+
FROM selenium/node-base:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER root

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.9.1-actinium
5+
FROM selenium/node-chrome:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChromeDebug/README.md

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

3939
``` dockerfile
40-
FROM selenium/node-chrome-debug:3.9.1-actinium
40+
FROM selenium/node-chrome-debug:3.10.0-argon
4141

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

NodeDebug/README.template.md

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

3939
``` dockerfile
40-
FROM selenium/##BASE##-debug:3.9.1-actinium
40+
FROM selenium/##BASE##-debug:3.10.0-argon
4141

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

NodeFirefox/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
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.9.1-actinium
5+
FROM selenium/node-base:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER root
99

1010
#=========
1111
# Firefox
1212
#=========
13-
ARG FIREFOX_VERSION=58.0.1
14-
RUN FIREFOX_DOWNLOAD_URL=$(if [ $FIREFOX_VERSION = "nightly" ]; then echo "https://download.mozilla.org/?product=firefox-nightly-latest-ssl&os=linux64&lang=en-US"; else echo "https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VERSION/linux-x86_64/en-US/firefox-$FIREFOX_VERSION.tar.bz2"; fi) \
13+
ARG FIREFOX_VERSION=58.0.2
14+
RUN FIREFOX_DOWNLOAD_URL=$(if [ $FIREFOX_VERSION = "nightly" ] || [ $FIREFOX_VERSION = "devedition" ]; then echo "https://download.mozilla.org/?product=firefox-$FIREFOX_VERSION-latest-ssl&os=linux64&lang=en-US"; else echo "https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VERSION/linux-x86_64/en-US/firefox-$FIREFOX_VERSION.tar.bz2"; fi) \
1515
&& apt-get update -qqy \
1616
&& apt-get -qqy --no-install-recommends install firefox \
1717
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \

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.9.1-actinium
5+
FROM selenium/node-firefox:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeFirefoxDebug/README.md

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

3939
``` dockerfile
40-
FROM selenium/node-firefox-debug:3.9.1-actinium
40+
FROM selenium/node-firefox-debug:3.10.0-argon
4141

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

README.md

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Images included:
3131

3232
Chrome
3333
``` bash
34-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.9.1-actinium
34+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.10.0-argon
3535
#OR
36-
$ docker run -d -p 4444:4444 --shm-size=2g selenium/standalone-chrome:3.9.1-actinium
36+
$ docker run -d -p 4444:4444 --shm-size=2g selenium/standalone-chrome:3.10.0-argon
3737
```
3838
Firefox
3939
``` bash
40-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.9.1-actinium
40+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.10.0-argon
4141
#OR
42-
$ docker run -d -p 4444:4444 --shm-size 2g selenium/standalone-firefox:3.9.1-actinium
42+
$ docker run -d -p 4444:4444 --shm-size 2g selenium/standalone-firefox:3.10.0-argon
4343
```
4444
This is a known workaround to avoid the browser crashing inside a docker container, here are the documented issues for
4545
[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
5050
### Standalone Chrome and Firefox
5151

5252
``` bash
53-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.9.1-actinium
53+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.10.0-argon
5454
# OR
55-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.9.1-actinium
55+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-firefox:3.10.0-argon
5656
```
5757

5858
_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_
6868

6969
``` bash
7070
$ docker network create grid
71-
$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub:3.9.1-actinium
72-
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.9.1-actinium
73-
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.9.1-actinium
71+
$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub:3.10.0-argon
72+
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-chrome:3.10.0-argon
73+
$ docker run -d --net grid -e HUB_HOST=selenium-hub -v /dev/shm:/dev/shm selenium/node-firefox:3.10.0-argon
7474
```
7575

7676
When you are done using the grid and the containers have exited, the network can be removed with the following command:
@@ -93,7 +93,7 @@ snippet as your `docker-compose.yaml`, save it locally and in the same folder ru
9393
version: '2'
9494
services:
9595
firefox:
96-
image: selenium/node-firefox:3.9.1-actinium
96+
image: selenium/node-firefox:3.10.0-argon
9797
volumes:
9898
- /dev/shm:/dev/shm
9999
depends_on:
@@ -102,7 +102,7 @@ services:
102102
HUB_HOST: hub
103103

104104
chrome:
105-
image: selenium/node-chrome:3.9.1-actinium
105+
image: selenium/node-chrome:3.10.0-argon
106106
volumes:
107107
- /dev/shm:/dev/shm
108108
depends_on:
@@ -111,7 +111,7 @@ services:
111111
HUB_HOST: hub
112112

113113
hub:
114-
image: selenium/hub:3.9.1-actinium
114+
image: selenium/hub:3.10.0-argon
115115
ports:
116116
- "4444:4444"
117117
```
@@ -124,9 +124,9 @@ for longer term usage since this is a docker [legacy feature](https://docs.docke
124124
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.
125125

126126
``` bash
127-
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.9.1-actinium
128-
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.9.1-actinium
129-
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox:3.9.1-actinium
127+
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.10.0-argon
128+
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome:3.10.0-argon
129+
$ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox:3.10.0-argon
130130
```
131131

132132
## Configuring the containers
@@ -136,15 +136,15 @@ $ docker run -d --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firef
136136
You can pass `JAVA_OPTS` environment variable to java process.
137137

138138
``` bash
139-
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.9.1-actinium
139+
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.10.0-argon
140140
```
141141

142142
### SE_OPTS Selenium Configuration Options
143143

144144
You can pass `SE_OPTS` variable with additional commandline parameters for starting a hub or a node.
145145

146146
``` bash
147-
$ docker run -d -p 4444:4444 -e SE_OPTS="-debug" --name selenium-hub selenium/hub:3.9.1-actinium
147+
$ docker run -d -p 4444:4444 -e SE_OPTS="-debug" --name selenium-hub selenium/hub:3.10.0-argon
148148
```
149149

150150
### Selenium Hub and Node Configuration options
@@ -156,15 +156,15 @@ You can pass the `HUB_HOST` and `HUB_PORT` options to provide the hub address to
156156

157157
``` bash
158158
# Assuming a hub was already started
159-
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e HUB_PORT=4444 selenium/node-chrome:3.9.1-actinium
159+
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e HUB_PORT=4444 selenium/node-chrome:3.10.0-argon
160160
```
161161

162162
Some network topologies might prevent the hub to reach the node through the url given at registration time, `REMOTE_HOST`
163163
can be used to supply the hub a url where the node is reachable under your specific network configuration
164164

165165
``` bash
166166
# Assuming a hub was already started
167-
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e REMOTE_HOST="http://node_ip|node_name:node_port" selenium/node-firefox:3.9.1-actinium
167+
$ docker run -d -e HUB_HOST=<hub_ip|hub_name> -e REMOTE_HOST="http://node_ip|node_name:node_port" selenium/node-firefox:3.10.0-argon
168168
```
169169

170170
## Building the images
@@ -188,11 +188,11 @@ _Note: Omitting_ `VERSION=local` _will build the images with the current version
188188
##### Example: Spawn a container for testing in Chrome:
189189

190190
``` bash
191-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.9.1-actinium
191+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.10.0-argon
192192
$ CH=$(docker run --rm --name=ch \
193193
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
194194
-v /dev/shm:/dev/shm \
195-
selenium/node-chrome:3.9.1-actinium)
195+
selenium/node-chrome:3.10.0-argon)
196196
```
197197

198198
_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._
@@ -202,11 +202,11 @@ _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing brow
202202
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.
203203

204204
``` bash
205-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.9.1-actinium
205+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.10.0-argon
206206
$ FF=$(docker run --rm --name=fx \
207207
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
208208
-v /dev/shm:/dev/shm \
209-
selenium/node-firefox:3.9.1-actinium)
209+
selenium/node-firefox:3.10.0-argon)
210210
```
211211

212212
_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/)._
@@ -215,27 +215,27 @@ _Note: Since a Docker container is not meant to preserve state and spawning a ne
215215

216216
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:
217217
``` bash
218-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.9.1-actinium
219-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.9.1-actinium
218+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.10.0-argon
219+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.10.0-argon
220220
```
221221
e.g.:
222222
``` bash
223-
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.9.1-actinium
224-
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.9.1-actinium
223+
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-chrome-debug:3.10.0-argon
224+
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub -v /dev/shm:/dev/shm selenium/node-firefox-debug:3.10.0-argon
225225
```
226226
to connect to the Chrome node on 5900 and the Firefox node on 5901 (assuming those node are free, and reachable).
227227

228228
And for standalone:
229229
``` bash
230-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.9.1-actinium
230+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.10.0-argon
231231
# OR
232-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.9.1-actinium
232+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.10.0-argon
233233
```
234234
or
235235
``` bash
236-
$ docker run -d -p 4444:4444 -p 5900:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.9.1-actinium
236+
$ docker run -d -p 4444:4444 -p 5900:5900 -v /dev/shm:/dev/shm selenium/standalone-chrome-debug:3.10.0-argon
237237
# OR
238-
$ docker run -d -p 4444:4444 -p 5901:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.9.1-actinium
238+
$ docker run -d -p 4444:4444 -p 5901:5900 -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.10.0-argon
239239
```
240240

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

255255
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:
256256
``` dockerfile
257-
#FROM selenium/node-chrome-debug:3.9.1-actinium
258-
#FROM selenium/node-firefox-debug:3.9.1-actinium
257+
#FROM selenium/node-chrome-debug:3.10.0-argon
258+
#FROM selenium/node-firefox-debug:3.10.0-argon
259259
#Choose the FROM statement that works for you.
260260
261261
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.9.1-actinium
5+
FROM selenium/node-chrome:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER seluser

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/node-chrome-debug:3.9.1-actinium
5+
FROM selenium/node-chrome-debug:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER seluser

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.9.1-actinium
5+
FROM selenium/node-firefox:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER seluser

StandaloneFirefoxDebug/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-debug:3.9.1-actinium
5+
FROM selenium/node-firefox-debug:3.10.0-argon
66
LABEL authors=SeleniumHQ
77

88
USER seluser

0 commit comments

Comments
 (0)