-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
55 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/base:2.53.1-americium | ||
FROM selenium/base:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
#======================== | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/base:2.53.1-americium | ||
FROM selenium/base:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
@@ -22,7 +22,7 @@ RUN echo "${TZ}" > /etc/timezone \ | |
RUN apt-get update -qqy \ | ||
&& apt-get -qqy install \ | ||
xvfb \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* | ||
|
||
#============================== | ||
# Scripts to run Selenium Node | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/node-base:2.53.1-americium | ||
FROM selenium/node-base:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
@@ -24,7 +24,7 @@ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key | |
&& apt-get -qqy install \ | ||
${CHROME_VERSION:-google-chrome-stable} \ | ||
&& rm /etc/apt/sources.list.d/google-chrome.list \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* | ||
|
||
#================== | ||
# Chrome webdriver | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/node-chrome:2.53.1-americium | ||
FROM selenium/node-chrome:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,18 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/node-base:2.53.1-americium | ||
FROM selenium/node-base:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
||
#========= | ||
# Firefox | ||
#========= | ||
ENV FIREFOX_VERSION 47.0.1 | ||
ARG FIREFOX_VERSION=47.0.1 | ||
RUN apt-get update -qqy \ | ||
&& apt-get -qqy --no-install-recommends install firefox \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \ | ||
&& 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 \ | ||
&& apt-get -y purge firefox \ | ||
&& rm -rf /opt/firefox \ | ||
|
@@ -25,7 +25,7 @@ RUN apt-get update -qqy \ | |
#============ | ||
# GeckoDriver | ||
#============ | ||
ENV GECKODRIVER_VERSION 0.10.0 | ||
ARG GECKODRIVER_VERSION=0.10.0 | ||
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 \ | ||
&& rm -rf /opt/geckodriver \ | ||
&& tar -C /opt -zxf /tmp/geckodriver.tar.gz \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/node-firefox:2.53.1-americium | ||
FROM selenium/node-firefox:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
@@ -13,7 +13,7 @@ USER root | |
RUN apt-get update -qqy \ | ||
&& apt-get -qqy install \ | ||
x11vnc \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \ | ||
&& mkdir -p /root/.vnc \ | ||
&& x11vnc -storepasswd secret ~/.vnc/passwd | ||
|
||
|
@@ -27,7 +27,7 @@ RUN locale-gen en_US.UTF-8 \ | |
&& apt-get update -qqy \ | ||
&& apt-get -qqy --no-install-recommends install \ | ||
language-pack-en \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* | ||
|
||
#======= | ||
# Fonts | ||
|
@@ -39,7 +39,7 @@ RUN apt-get update -qqy \ | |
xfonts-75dpi \ | ||
xfonts-cyrillic \ | ||
xfonts-scalable \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* | ||
|
||
#========= | ||
# fluxbox | ||
|
@@ -48,7 +48,7 @@ RUN apt-get update -qqy \ | |
RUN apt-get update -qqy \ | ||
&& apt-get -qqy install \ | ||
fluxbox \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* | ||
|
||
#============================== | ||
# Scripts to run Selenium Node | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM selenium/node-firefox:2.53.1 | ||
FROM selenium/node-firefox:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/node-chrome:2.53.1-americium | ||
FROM selenium/node-chrome:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/standalone-chrome:2.53.1-americium | ||
FROM selenium/standalone-chrome:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/node-firefox:2.53.1-americium | ||
FROM selenium/node-firefox:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. | ||
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE | ||
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
FROM selenium/standalone-firefox:2.53.1-americium | ||
FROM selenium/standalone-firefox:2.53.1-beryllium | ||
MAINTAINER Selenium <[email protected]> | ||
|
||
USER root | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters