File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,25 +57,25 @@ firefox: nodebase generate_firefox
57
57
generate_standalone_firefox :
58
58
cd ./Standalone && ./generate.sh StandaloneFirefox node-firefox Firefox $(VERSION ) $(NAMESPACE ) $(AUTHORS )
59
59
60
- standalone_firefox : generate_standalone_firefox firefox
60
+ standalone_firefox : firefox generate_standalone_firefox
61
61
cd ./StandaloneFirefox && docker build $(BUILD_ARGS ) -t $(NAME ) /standalone-firefox:$(VERSION ) .
62
62
63
63
generate_standalone_firefox_debug :
64
64
cd ./StandaloneDebug && ./generate.sh StandaloneFirefoxDebug node-firefox-debug Firefox $(VERSION ) $(NAMESPACE ) $(AUTHORS )
65
65
66
- standalone_firefox_debug : generate_standalone_firefox_debug standalone_firefox
66
+ standalone_firefox_debug : firefox_debug generate_standalone_firefox_debug
67
67
cd ./StandaloneFirefoxDebug && docker build $(BUILD_ARGS ) -t $(NAME ) /standalone-firefox-debug:$(VERSION ) .
68
68
69
69
generate_standalone_chrome :
70
70
cd ./Standalone && ./generate.sh StandaloneChrome node-chrome Chrome $(VERSION ) $(NAMESPACE ) $(AUTHORS )
71
71
72
- standalone_chrome : generate_standalone_chrome chrome
72
+ standalone_chrome : chrome generate_standalone_chrome
73
73
cd ./StandaloneChrome && docker build $(BUILD_ARGS ) -t $(NAME ) /standalone-chrome:$(VERSION ) .
74
74
75
75
generate_standalone_chrome_debug :
76
76
cd ./StandaloneDebug && ./generate.sh StandaloneChromeDebug node-chrome-debug Chrome $(VERSION ) $(NAMESPACE ) $(AUTHORS )
77
77
78
- standalone_chrome_debug : chrome_debug generate_standalone_chrome_debug standalone_chrome
78
+ standalone_chrome_debug : chrome_debug generate_standalone_chrome_debug
79
79
cd ./StandaloneChromeDebug && docker build $(BUILD_ARGS ) -t $(NAME ) /standalone-chrome-debug:$(VERSION ) .
80
80
81
81
generate_chrome_debug :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ USER root
3
3
#=========
4
4
# Firefox
5
5
#=========
6
- ARG FIREFOX_VERSION=56.0
6
+ ARG FIREFOX_VERSION=56.0.2
7
7
RUN apt-get update -qqy \
8
8
&& apt-get -qqy --no-install-recommends install firefox \
9
9
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
@@ -18,7 +18,7 @@ RUN apt-get update -qqy \
18
18
#============
19
19
# GeckoDriver
20
20
#============
21
- ARG GECKODRIVER_VERSION=0.19.0
21
+ ARG GECKODRIVER_VERSION=0.19.1
22
22
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 \
23
23
&& rm -rf /opt/geckodriver \
24
24
&& tar -C /opt -zxf /tmp/geckodriver.tar.gz \
You can’t perform that action at this time.
0 commit comments