File tree Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
source /opt/bin/functions.sh
4
+ /opt/bin/generate_config > /opt/selenium/config.json
4
5
5
6
export GEOMETRY=" $SCREEN_WIDTH " " x" " $SCREEN_HEIGHT " " x" " $SCREEN_DEPTH "
6
7
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ USER seluser
31
31
# ==================
32
32
# Chrome webdriver
33
33
# ==================
34
- ARG CHROME_DRIVER_VERSION=2.30
34
+ ARG CHROME_DRIVER_VERSION=2.31
35
35
RUN wget --no-verbose -O /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip \
36
36
&& rm -rf /opt/selenium/chromedriver \
37
37
&& unzip /tmp/chromedriver_linux64.zip -d /opt/selenium \
@@ -47,5 +47,5 @@ COPY generate_config /opt/bin/generate_config
47
47
# =================================
48
48
COPY chrome_launcher.sh /opt/google/chrome/google-chrome
49
49
50
- # Generating config inside the image rather than with entry_point.sh
50
+ # Generating a default config during build time
51
51
RUN /opt/bin/generate_config > /opt/selenium/config.json
Original file line number Diff line number Diff line change 3
3
# IMPORTANT: Change this file only in directory NodeDebug!
4
4
5
5
source /opt/bin/functions.sh
6
+ /opt/bin/generate_config > /opt/selenium/config.json
6
7
7
8
export GEOMETRY=" $SCREEN_WIDTH " " x" " $SCREEN_HEIGHT " " x" " $SCREEN_DEPTH "
8
9
Original file line number Diff line number Diff line change 3
3
# IMPORTANT: Change this file only in directory NodeDebug!
4
4
5
5
source /opt/bin/functions.sh
6
+ /opt/bin/generate_config > /opt/selenium/config.json
6
7
7
8
export GEOMETRY=" $SCREEN_WIDTH " " x" " $SCREEN_HEIGHT " " x" " $SCREEN_DEPTH "
8
9
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ USER root
10
10
# =========
11
11
# Firefox
12
12
# =========
13
- ARG FIREFOX_VERSION=54.0
13
+ ARG FIREFOX_VERSION=54.0.1
14
14
RUN apt-get update -qqy \
15
15
&& apt-get -qqy --no-install-recommends install firefox \
16
16
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
@@ -25,7 +25,7 @@ RUN apt-get update -qqy \
25
25
# ============
26
26
# GeckoDriver
27
27
# ============
28
- ARG GECKODRIVER_VERSION=0.17 .0
28
+ ARG GECKODRIVER_VERSION=0.18 .0
29
29
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 \
30
30
&& rm -rf /opt/geckodriver \
31
31
&& tar -C /opt -zxf /tmp/geckodriver.tar.gz \
@@ -43,5 +43,5 @@ COPY generate_config /opt/bin/generate_config
43
43
# When logging into the container
44
44
RUN sudo echo ""
45
45
46
- # Generating config inside the image rather than with entry_point.sh
46
+ # Generating a default config during build time
47
47
RUN /opt/bin/generate_config > /opt/selenium/config.json
Original file line number Diff line number Diff line change 3
3
# IMPORTANT: Change this file only in directory NodeDebug!
4
4
5
5
source /opt/bin/functions.sh
6
+ /opt/bin/generate_config > /opt/selenium/config.json
6
7
7
8
export GEOMETRY=" $SCREEN_WIDTH " " x" " $SCREEN_HEIGHT " " x" " $SCREEN_DEPTH "
8
9
You can’t perform that action at this time.
0 commit comments