Skip to content

Commit 8805e8e

Browse files
committed
cerium release
1 parent 2cc497a commit 8805e8e

File tree

18 files changed

+48
-49
lines changed

18 files changed

+48
-49
lines changed

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.0.0-berkelium
5+
FROM selenium/base:3.0.0-cerium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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),'3.0.0-berkelium')
2+
VERSION := $(or $(VERSION),$(VERSION),'3.0.0-cerium')
33
PLATFORM := $(shell uname -s)
44
BUILD_ARGS := $(BUILD_ARGS)
55

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.0.0-berkelium
5+
FROM selenium/base:3.0.0-cerium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
ENV DEBIAN_FRONTEND noninteractive

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.0.0-berkelium
5+
FROM selenium/node-base:3.0.0-cerium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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.0.0-berkelium
5+
FROM selenium/node-chrome:3.0.0-cerium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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.0.0-berkelium
41+
FROM selenium/node-chrome-debug:3.0.0-cerium
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.0.0-berkelium
41+
FROM selenium/##BASE##-debug:3.0.0-cerium
4242

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

NodeFirefox/Dockerfile

Lines changed: 3 additions & 4 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:3.0.0-berkelium
5+
FROM selenium/node-base:3.0.0-cerium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
77

88
USER root
@@ -25,15 +25,14 @@ RUN apt-get update -qqy \
2525
#============
2626
# GeckoDriver
2727
#============
28-
ARG GECKODRIVER_VERSION=0.10.0
28+
ARG GECKODRIVER_VERSION=0.11.1
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 \
3232
&& rm /tmp/geckodriver.tar.gz \
3333
&& mv /opt/geckodriver /opt/geckodriver-$GECKODRIVER_VERSION \
3434
&& chmod 755 /opt/geckodriver-$GECKODRIVER_VERSION \
35-
&& ln -fs /opt/geckodriver-$GECKODRIVER_VERSION /usr/bin/geckodriver \
36-
&& ln -fs /opt/geckodriver-$GECKODRIVER_VERSION /usr/bin/wires
35+
&& ln -fs /opt/geckodriver-$GECKODRIVER_VERSION /usr/bin/geckodriver
3736

3837
#========================
3938
# Selenium Configuration

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.0.0-berkelium
5+
FROM selenium/node-firefox:3.0.0-cerium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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.0.0-berkelium
1+
FROM selenium/node-firefox:3.0.0-cerium
22
MAINTAINER Selenium <selenium-developers@googlegroups.com>
33

44
USER root

0 commit comments

Comments
 (0)