Skip to content

Commit c27cd9f

Browse files
committed
initial 3.0.0 release
1 parent d28dda6 commit c27cd9f

File tree

23 files changed

+72
-80
lines changed

23 files changed

+72
-80
lines changed

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN apt-get update -qqy \
2727
# Selenium
2828
#==========
2929
RUN mkdir -p /opt/selenium \
30-
&& wget --no-verbose https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar -O /opt/selenium/selenium-server-standalone.jar
30+
&& wget --no-verbose https://selenium-release.storage.googleapis.com/3.0/selenium-server-standalone-3.0.0.jar -O /opt/selenium/selenium-server-standalone.jar
3131

3232
#========================================
3333
# Add normal user with passwordless sudo

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:2.53.1-americium
5+
FROM selenium/base:3.0.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
#========================

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),'2.53.1')
2+
VERSION := $(or $(VERSION),$(VERSION),'3.0.0-actinium')
33
PLATFORM := $(shell uname -s)
44
BUILD_ARGS := $(BUILD_ARGS)
55

NodeBase/Dockerfile

Lines changed: 2 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:2.53.1-americium
5+
FROM selenium/base:3.0.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
ENV DEBIAN_FRONTEND noninteractive
@@ -22,7 +22,7 @@ RUN echo "${TZ}" > /etc/timezone \
2222
RUN apt-get update -qqy \
2323
&& apt-get -qqy install \
2424
xvfb \
25-
&& rm -rf /var/lib/apt/lists/*
25+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
2626

2727
#==============================
2828
# Scripts to run Selenium Node

NodeChrome/Dockerfile

Lines changed: 2 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/node-base:2.53.1-americium
5+
FROM selenium/node-base:3.0.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root
@@ -24,7 +24,7 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key
2424
&& apt-get -qqy install \
2525
${CHROME_VERSION:-google-chrome-stable} \
2626
&& rm /etc/apt/sources.list.d/google-chrome.list \
27-
&& rm -rf /var/lib/apt/lists/*
27+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
2828

2929
#==================
3030
# Chrome webdriver

NodeChrome/generate_config

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,16 @@
33
echo "
44
{
55
\"capabilities\": [
6-
{
7-
\"browserName\": \"*googlechrome\",
8-
\"maxInstances\": $NODE_MAX_INSTANCES,
9-
\"seleniumProtocol\": \"Selenium\"
10-
},
116
{
127
\"browserName\": \"chrome\",
138
\"maxInstances\": $NODE_MAX_INSTANCES,
149
\"seleniumProtocol\": \"WebDriver\"
1510
}
1611
],
17-
\"configuration\": {
18-
\"proxy\": \"org.openqa.grid.selenium.proxy.DefaultRemoteProxy\",
19-
\"maxSession\": $NODE_MAX_SESSION,
20-
\"port\": 5555,
21-
\"register\": true,
22-
\"registerCycle\": $NODE_REGISTER_CYCLE
23-
}
12+
\"proxy\": \"org.openqa.grid.selenium.proxy.DefaultRemoteProxy\",
13+
\"maxSession\": $NODE_MAX_SESSION,
14+
\"port\": 5555,
15+
\"register\": true,
16+
\"registerCycle\": $NODE_REGISTER_CYCLE
2417
}"
2518

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:2.53.1-americium
5+
FROM selenium/node-chrome:3.0.0-actinium
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:2.53.1
41+
FROM selenium/node-chrome-debug:3.0.0-actinium
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:2.53.1
41+
FROM selenium/##BASE##-debug:3.0.0-actinium
4242

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

NodeFirefox/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
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:2.53.1-americium
5+
FROM selenium/node-base:3.0.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root
99

1010
#=========
1111
# Firefox
1212
#=========
13-
ENV FIREFOX_VERSION 47.0.1
13+
ARG FIREFOX_VERSION=47.0.1
1414
RUN apt-get update -qqy \
1515
&& apt-get -qqy --no-install-recommends install firefox \
16-
&& rm -rf /var/lib/apt/lists/* \
16+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
1717
&& wget --no-verbose -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VERSION/linux-x86_64/en-US/firefox-$FIREFOX_VERSION.tar.bz2 \
1818
&& apt-get -y purge firefox \
1919
&& rm -rf /opt/firefox \
@@ -25,7 +25,7 @@ RUN apt-get update -qqy \
2525
#============
2626
# GeckoDriver
2727
#============
28-
ENV GECKODRIVER_VERSION 0.10.0
28+
ARG GECKODRIVER_VERSION=0.10.0
2929
RUN wget --no-verbose -O /tmp/geckodriver.tar.gz https://github.com/mozilla/geckodriver/releases/download/v$GECKODRIVER_VERSION/geckodriver-v$GECKODRIVER_VERSION-linux64.tar.gz \
3030
&& rm -rf /opt/geckodriver \
3131
&& tar -C /opt -zxf /tmp/geckodriver.tar.gz \

NodeFirefox/generate_config

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,16 @@
33
echo "
44
{
55
\"capabilities\": [
6-
{
7-
\"browserName\": \"*firefox\",
8-
\"maxInstances\": $NODE_MAX_INSTANCES,
9-
\"seleniumProtocol\": \"Selenium\"
10-
},
116
{
127
\"browserName\": \"firefox\",
138
\"maxInstances\": $NODE_MAX_INSTANCES,
149
\"seleniumProtocol\": \"WebDriver\"
1510
}
1611
],
17-
\"configuration\": {
18-
\"proxy\": \"org.openqa.grid.selenium.proxy.DefaultRemoteProxy\",
19-
\"maxSession\": $NODE_MAX_SESSION,
20-
\"port\": 5555,
21-
\"register\": true,
22-
\"registerCycle\": $NODE_REGISTER_CYCLE
23-
}
12+
\"proxy\": \"org.openqa.grid.selenium.proxy.DefaultRemoteProxy\",
13+
\"maxSession\": $NODE_MAX_SESSION,
14+
\"port\": 5555,
15+
\"register\": true,
16+
\"registerCycle\": $NODE_REGISTER_CYCLE
2417
}"
2518

NodeFirefoxDebug/Dockerfile

Lines changed: 5 additions & 5 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/node-firefox:2.53.1-americium
5+
FROM selenium/node-firefox:3.0.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root
@@ -13,7 +13,7 @@ USER root
1313
RUN apt-get update -qqy \
1414
&& apt-get -qqy install \
1515
x11vnc \
16-
&& rm -rf /var/lib/apt/lists/* \
16+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
1717
&& mkdir -p /root/.vnc \
1818
&& x11vnc -storepasswd secret ~/.vnc/passwd
1919

@@ -27,7 +27,7 @@ RUN locale-gen en_US.UTF-8 \
2727
&& apt-get update -qqy \
2828
&& apt-get -qqy --no-install-recommends install \
2929
language-pack-en \
30-
&& rm -rf /var/lib/apt/lists/*
30+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
3131

3232
#=======
3333
# Fonts
@@ -39,7 +39,7 @@ RUN apt-get update -qqy \
3939
xfonts-75dpi \
4040
xfonts-cyrillic \
4141
xfonts-scalable \
42-
&& rm -rf /var/lib/apt/lists/*
42+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
4343

4444
#=========
4545
# fluxbox
@@ -48,7 +48,7 @@ RUN apt-get update -qqy \
4848
RUN apt-get update -qqy \
4949
&& apt-get -qqy install \
5050
fluxbox \
51-
&& rm -rf /var/lib/apt/lists/*
51+
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
5252

5353
#==============================
5454
# Scripts to run Selenium Node

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:2.53.1
1+
FROM selenium/node-firefox:3.0.0-actinium
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:2.53.1
41+
FROM selenium/node-firefox-debug:3.0.0-actinium
4242

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

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Images included:
2525
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.
2626

2727
``` bash
28-
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:2.53.1
28+
$ docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome:3.0.0-actinium
2929
```
3030

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

3636
``` bash
37-
$ docker run -d -p 4444:4444 selenium/standalone-chrome:2.53.1
37+
$ docker run -d -p 4444:4444 selenium/standalone-chrome:3.0.0-actinium
3838
# OR
39-
$ docker run -d -p 4444:4444 selenium/standalone-firefox:2.53.1
39+
$ docker run -d -p 4444:4444 selenium/standalone-firefox:3.0.0-actinium
4040
```
4141

4242
_Note: Only one standalone image can run on port_ `4444` _at a time._
@@ -46,30 +46,30 @@ To inspect visually what the browser is doing use the `standalone-chrome-debug`
4646
### Selenium Grid Hub
4747

4848
``` bash
49-
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:2.53.1
49+
$ docker run -d -p 4444:4444 --name selenium-hub selenium/hub:3.0.0-actinium
5050
```
5151

5252
### Chrome and Firefox Grid Nodes
5353

5454
``` bash
55-
$ docker run -d --link selenium-hub:hub selenium/node-chrome:2.53.1
56-
$ docker run -d --link selenium-hub:hub selenium/node-firefox:2.53.1
55+
$ docker run -d --link selenium-hub:hub selenium/node-chrome:3.0.0-actinium
56+
$ docker run -d --link selenium-hub:hub selenium/node-firefox:3.0.0-actinium
5757
```
5858

5959
### JAVA_OPTS Java Environment Options
6060

6161
You can pass `JAVA_OPTS` environment variable to java process.
6262

6363
``` bash
64-
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:2.53.1
64+
$ docker run -d -p 4444:4444 -e JAVA_OPTS=-Xmx512m --name selenium-hub selenium/hub:3.0.0-actinium
6565
```
6666

6767
### SE_OPTS Selenium Configuration Options
6868

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

7171
``` bash
72-
$ docker run -d -p 4444:4444 -e SE_OPTS=-debug --name selenium-hub selenium/hub:2.53.1
72+
$ docker run -d -p 4444:4444 -e SE_OPTS=-debug --name selenium-hub selenium/hub:3.0.0-actinium
7373
```
7474

7575
## Building the images
@@ -99,10 +99,10 @@ _Note: Omitting_ `VERSION=local` _will build the images with the current version
9999
##### Example: Spawn a container for testing in Chrome:
100100

101101
``` bash
102-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:2.53.1
102+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.0.0-actinium
103103
$ CH=$(docker run --rm --name=ch \
104104
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
105-
selenium/node-chrome:2.53.1)
105+
selenium/node-chrome:3.0.0-actinium)
106106
```
107107

108108
_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._
@@ -112,10 +112,10 @@ _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing brow
112112
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.
113113

114114
``` bash
115-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:2.53.1
115+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:3.0.0-actinium
116116
$ FF=$(docker run --rm --name=fx \
117117
--link selenium-hub:hub -v /e2e/uploads:/e2e/uploads \
118-
selenium/node-firefox:2.53.1)
118+
selenium/node-firefox:3.0.0-actinium)
119119
```
120120

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

125125
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:
126126
``` bash
127-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-chrome-debug:2.53.1
128-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-firefox-debug:2.53.1
127+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-chrome-debug:3.0.0-actinium
128+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-firefox-debug:3.0.0-actinium
129129
```
130130
e.g.:
131131
``` bash
132-
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub selenium/node-chrome-debug:2.53.1
133-
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub selenium/node-firefox-debug:2.53.1
132+
$ docker run -d -P -p 5900:5900 --link selenium-hub:hub selenium/node-chrome-debug:3.0.0-actinium
133+
$ docker run -d -P -p 5901:5900 --link selenium-hub:hub selenium/node-firefox-debug:3.0.0-actinium
134134
```
135135

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

138138
And for standalone:
139139
``` bash
140-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-chrome-debug:2.53.1
140+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-chrome-debug:3.0.0-actinium
141141
# OR
142-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-firefox-debug:2.53.1
142+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-firefox-debug:3.0.0-actinium
143143
```
144144
or
145145
``` bash
146-
$ docker run -d -p 4444:4444 -p 5900:5900 selenium/standalone-chrome-debug:2.53.1
146+
$ docker run -d -p 4444:4444 -p 5900:5900 selenium/standalone-chrome-debug:3.0.0-actinium
147147
# OR
148-
$ docker run -d -p 4444:4444 -p 5901:5900 selenium/standalone-firefox-debug:2.53.1
148+
$ docker run -d -p 4444:4444 -p 5901:5900 selenium/standalone-firefox-debug:3.0.0-actinium
149149
```
150150

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

165165
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:
166166
``` dockerfile
167-
#FROM selenium/node-chrome-debug:2.53.1
168-
#FROM selenium/node-firefox-debug:2.53.1
167+
#FROM selenium/node-chrome-debug:3.0.0-actinium
168+
#FROM selenium/node-firefox-debug:3.0.0-actinium
169169
#Choose the FROM statement that works for you.
170170

171171
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
@@ -177,11 +177,11 @@ RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
177177
$ docker images
178178
#=>
179179
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
180-
selenium/node-firefox 2.53.1 69f762d0d79e 29 minutes ago 552.1 MB
181-
selenium/node-chrome 2.53.1 9dd73160660b 30 minutes ago 723.6 MB
182-
selenium/node-base 2.53.1 1b7a0b7024b1 32 minutes ago 426.1 MB
183-
selenium/hub 2.53.1 2570bbb98229 33 minutes ago 394.4 MB
184-
selenium/base 2.53.1 33478d455dab 33 minutes ago 362.6 MB
180+
selenium/node-firefox 3.0.0-actinium 69f762d0d79e 29 minutes ago 552.1 MB
181+
selenium/node-chrome 3.0.0-actinium 9dd73160660b 30 minutes ago 723.6 MB
182+
selenium/node-base 3.0.0-actinium 1b7a0b7024b1 32 minutes ago 426.1 MB
183+
selenium/hub 3.0.0-actinium 2570bbb98229 33 minutes ago 394.4 MB
184+
selenium/base 3.0.0-actinium 33478d455dab 33 minutes ago 362.6 MB
185185
ubuntu 16.04 0b7735b9290f 6 days ago 123.7 MB
186186
```
187187

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:2.53.1-americium
5+
FROM selenium/node-chrome:3.0.0-actinium
66
MAINTAINER Selenium <[email protected]>
77

88
USER root

0 commit comments

Comments
 (0)