Skip to content

Commit e733a6f

Browse files
committed
prepare 2.53.1-beryllium
1 parent 15d9dc0 commit e733a6f

File tree

18 files changed

+55
-55
lines changed

18 files changed

+55
-55
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:2.53.1-americium
5+
FROM selenium/base:2.53.1-beryllium
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),'2.53.1')
2+
VERSION := $(or $(VERSION),$(VERSION),'2.53.1-beryllium')
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:2.53.1-beryllium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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:2.53.1-beryllium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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

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:2.53.1-beryllium
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:2.53.1
41+
FROM selenium/node-chrome-debug:2.53.1-beryllium
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:2.53.1-beryllium
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:2.53.1-beryllium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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 \

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:2.53.1-beryllium
66
MAINTAINER Selenium <selenium-developers@googlegroups.com>
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:2.53.1-beryllium
22
MAINTAINER Selenium <selenium-developers@googlegroups.com>
33

44
USER root

0 commit comments

Comments
 (0)