Skip to content

Commit 20995d2

Browse files
committed
3.11.0-californium release
1 parent a8cf46b commit 20995d2

File tree

16 files changed

+72
-76
lines changed

16 files changed

+72
-76
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.11.0-bismuth etc -->
5+
<!-- 3, 3.4, 3.11.0-californium 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.11.0-bismuth
5+
FROM selenium/base:3.11.0-californium
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.11.0-bismuth)
2+
VERSION := $(or $(VERSION),$(VERSION),3.11.0-californium)
33
NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME))
44
AUTHORS := $(or $(AUTHORS),$(AUTHORS),SeleniumHQ)
55
PLATFORM := $(shell uname -s)

NodeBase/Dockerfile

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,40 @@
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.11.0-bismuth
5+
FROM selenium/base:3.11.0-californium
66
LABEL authors=SeleniumHQ
77

88
USER root
99

1010
#==============
11-
# VNC and Xvfb
11+
# Xvfb
1212
#==============
1313
RUN apt-get update -qqy \
1414
&& apt-get -qqy install \
15-
locales \
1615
xvfb \
1716
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1817

18+
#==============================
19+
# Locale and encoding settings
20+
#==============================
21+
ENV LANG_WHICH en
22+
ENV LANG_WHERE US
23+
ENV ENCODING UTF-8
24+
ENV LANGUAGE ${LANG_WHICH}_${LANG_WHERE}.${ENCODING}
25+
ENV LANG ${LANGUAGE}
26+
# Layer size: small: ~9 MB
27+
# Layer size: small: ~9 MB MB (with --no-install-recommends)
28+
RUN apt -qqy update \
29+
&& apt -qqy --no-install-recommends install \
30+
language-pack-en \
31+
tzdata \
32+
locales \
33+
&& locale-gen ${LANGUAGE} \
34+
&& dpkg-reconfigure --frontend noninteractive locales \
35+
&& apt -qyy autoremove \
36+
&& rm -rf /var/lib/apt/lists/* \
37+
&& apt -qyy clean
38+
1939
#================
2040
# Font libraries
2141
#================

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.11.0-bismuth
5+
FROM selenium/node-base:3.11.0-californium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChromeDebug/Dockerfile

Lines changed: 1 addition & 13 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-chrome:3.11.0-bismuth
5+
FROM selenium/node-chrome:3.11.0-californium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -15,18 +15,6 @@ RUN apt-get update -qqy \
1515
x11vnc \
1616
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1717

18-
#=================
19-
# Locale settings
20-
#=================
21-
ENV LANGUAGE en_US.UTF-8
22-
ENV LANG en_US.UTF-8
23-
RUN locale-gen en_US.UTF-8 \
24-
&& dpkg-reconfigure --frontend noninteractive locales \
25-
&& apt-get update -qqy \
26-
&& apt-get -qqy --no-install-recommends install \
27-
language-pack-en \
28-
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
29-
3018
#=========
3119
# fluxbox
3220
# A fast, lightweight and responsive window manager

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.11.0-bismuth
40+
FROM selenium/node-chrome-debug:3.11.0-californium
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.11.0-bismuth
40+
FROM selenium/##BASE##-debug:3.11.0-californium
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.11.0-bismuth
5+
FROM selenium/node-base:3.11.0-californium
66
LABEL authors=SeleniumHQ
77

88
USER root
99

1010
#=========
1111
# Firefox
1212
#=========
13-
ARG FIREFOX_VERSION=59.0.1
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) \
13+
ARG FIREFOX_VERSION=latest
14+
RUN FIREFOX_DOWNLOAD_URL=$(if [ $FIREFOX_VERSION = "latest" ] || [ $FIREFOX_VERSION = "nightly-latest" ] || [ $FIREFOX_VERSION = "devedition-latest" ]; then echo "https://download.mozilla.org/?product=firefox-$FIREFOX_VERSION-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 & 13 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:3.11.0-bismuth
5+
FROM selenium/node-firefox:3.11.0-californium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -15,18 +15,6 @@ RUN apt-get update -qqy \
1515
x11vnc \
1616
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1717

18-
#=================
19-
# Locale settings
20-
#=================
21-
ENV LANGUAGE en_US.UTF-8
22-
ENV LANG en_US.UTF-8
23-
RUN locale-gen en_US.UTF-8 \
24-
&& dpkg-reconfigure --frontend noninteractive locales \
25-
&& apt-get update -qqy \
26-
&& apt-get -qqy --no-install-recommends install \
27-
language-pack-en \
28-
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
29-
3018
#=========
3119
# fluxbox
3220
# A fast, lightweight and responsive window manager

0 commit comments

Comments
 (0)