Skip to content

Commit 6d6662e

Browse files
committed
3.11.0-bismuth release
1 parent 9d0db0c commit 6d6662e

File tree

16 files changed

+83
-73
lines changed

16 files changed

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

NodeBase/Dockerfile

Lines changed: 35 additions & 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-antimony
5+
FROM selenium/base:3.11.0-bismuth
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -16,6 +16,40 @@ RUN apt-get update -qqy \
1616
xvfb \
1717
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1818

19+
#================
20+
# Font libraries
21+
#================
22+
# libfontconfig ~1 MB
23+
# libfreetype6 ~1 MB
24+
# xfonts-cyrillic ~2 MB
25+
# xfonts-scalable ~2 MB
26+
# fonts-liberation ~3 MB
27+
# fonts-ipafont-gothic ~13 MB
28+
# fonts-wqy-zenhei ~17 MB
29+
# fonts-tlwg-loma-otf ~300 KB
30+
# ttf-ubuntu-font-family ~5 MB
31+
# Ubuntu Font Family, sans-serif typeface hinted for clarity
32+
# Removed packages:
33+
# xfonts-100dpi ~6 MB
34+
# xfonts-75dpi ~6 MB
35+
# Regarding fonts-liberation see:
36+
# https://github.com/SeleniumHQ/docker-selenium/issues/383#issuecomment-278367069
37+
# Layer size: small: 36.28 MB (with --no-install-recommends)
38+
# Layer size: small: 36.28 MB
39+
RUN apt -qqy update \
40+
&& apt -qqy --no-install-recommends install \
41+
libfontconfig \
42+
libfreetype6 \
43+
xfonts-cyrillic \
44+
xfonts-scalable \
45+
fonts-liberation \
46+
fonts-ipafont-gothic \
47+
fonts-wqy-zenhei \
48+
fonts-tlwg-loma-otf \
49+
ttf-ubuntu-font-family \
50+
&& rm -rf /var/lib/apt/lists/* \
51+
&& apt -qyy clean
52+
1953
#===================================================
2054
# Run the following commands as non-privileged user
2155
#===================================================

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

88
USER root
@@ -27,18 +27,6 @@ RUN locale-gen en_US.UTF-8 \
2727
language-pack-en \
2828
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
2929

30-
#=======
31-
# Fonts
32-
#=======
33-
RUN apt-get update -qqy \
34-
&& apt-get -qqy --no-install-recommends install \
35-
fonts-ipafont-gothic \
36-
xfonts-100dpi \
37-
xfonts-75dpi \
38-
xfonts-cyrillic \
39-
xfonts-scalable \
40-
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
41-
4230
#=========
4331
# fluxbox
4432
# 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-antimony
40+
FROM selenium/node-chrome-debug:3.11.0-bismuth
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-antimony
40+
FROM selenium/##BASE##-debug:3.11.0-bismuth
4141

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

NodeFirefox/Dockerfile

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

88
USER root
99

1010
#=========
1111
# Firefox
1212
#=========
13-
ARG FIREFOX_VERSION=58.0.2
13+
ARG FIREFOX_VERSION=59.0.1
1414
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 \

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-antimony
5+
FROM selenium/node-firefox:3.11.0-bismuth
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -27,18 +27,6 @@ RUN locale-gen en_US.UTF-8 \
2727
language-pack-en \
2828
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
2929

30-
#=======
31-
# Fonts
32-
#=======
33-
RUN apt-get update -qqy \
34-
&& apt-get -qqy --no-install-recommends install \
35-
fonts-ipafont-gothic \
36-
xfonts-100dpi \
37-
xfonts-75dpi \
38-
xfonts-cyrillic \
39-
xfonts-scalable \
40-
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
41-
4230
#=========
4331
# fluxbox
4432
# A fast, lightweight and responsive window manager

0 commit comments

Comments
 (0)