Skip to content

Commit 1fbe302

Browse files
committed
prepare 3.4.0-francium release
1 parent 45304b7 commit 1fbe302

File tree

20 files changed

+51
-45
lines changed

20 files changed

+51
-45
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.4.0-einsteinium etc -->
5+
<!-- 3, 3.4, 3.4.0-francium etc -->
66
OS:
77
<!-- Windows 10, OSX Yosemite, Centos6, etc -->
88

Hub/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:3.4.0-einsteinium
5+
FROM selenium/base:3.4.0-francium
66
LABEL authors=SeleniumHQ
77

88
USER seluser
@@ -36,6 +36,6 @@ COPY generate_config \
3636
# Running this command as sudo just to avoid the message:
3737
# To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details.
3838
# When logging into the container
39-
RUN sudo /opt/bin/generate_config > /opt/selenium/config.json
39+
RUN /opt/bin/generate_config > /opt/selenium/config.json
4040

4141
CMD ["/opt/bin/entry_point.sh"]

Hub/Dockerfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ COPY generate_config \
2929
# Running this command as sudo just to avoid the message:
3030
# To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details.
3131
# When logging into the container
32-
RUN sudo /opt/bin/generate_config > /opt/selenium/config.json
32+
RUN /opt/bin/generate_config > /opt/selenium/config.json
3333

3434
CMD ["/opt/bin/entry_point.sh"]

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.4.0-einsteinium)
2+
VERSION := $(or $(VERSION),$(VERSION),3.4.0-francium)
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.4.0-einsteinium
5+
FROM selenium/base:3.4.0-francium
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChrome/Dockerfile

Lines changed: 4 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/node-base:3.4.0-einsteinium
5+
FROM selenium/node-base:3.4.0-francium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -46,3 +46,6 @@ COPY generate_config /opt/bin/generate_config
4646
# Chrome Launch Script Modification
4747
#=================================
4848
COPY chrome_launcher.sh /opt/google/chrome/google-chrome
49+
50+
# Generating config inside the image rather than with entry_point.sh
51+
RUN /opt/bin/generate_config > /opt/selenium/config.json

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.4.0-einsteinium
5+
FROM selenium/node-chrome:3.4.0-francium
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
@@ -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.4.0-einsteinium
41+
FROM selenium/node-chrome-debug:3.4.0-francium
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.4.0-einsteinium
41+
FROM selenium/##BASE##-debug:3.4.0-francium
4242

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

NodeFirefox/Dockerfile

Lines changed: 4 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/node-base:3.4.0-einsteinium
5+
FROM selenium/node-base:3.4.0-francium
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -42,3 +42,6 @@ COPY generate_config /opt/bin/generate_config
4242
# To run a command as administrator (user "root"), use "sudo <command>". See "man sudo_root" for details.
4343
# When logging into the container
4444
RUN sudo echo ""
45+
46+
# Generating config inside the image rather than with entry_point.sh
47+
RUN /opt/bin/generate_config > /opt/selenium/config.json

0 commit comments

Comments
 (0)