From 8a4317dbeea1da9a449f73be7ffdc4a62d44c169 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 31 Oct 2017 18:49:02 +0100 Subject: [PATCH 1/3] Fixing makefile for standalone debug images --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3676357ab5..936673c3a8 100644 --- a/Makefile +++ b/Makefile @@ -57,25 +57,25 @@ firefox: nodebase generate_firefox generate_standalone_firefox: cd ./Standalone && ./generate.sh StandaloneFirefox node-firefox Firefox $(VERSION) $(NAMESPACE) $(AUTHORS) -standalone_firefox: generate_standalone_firefox firefox +standalone_firefox: firefox generate_standalone_firefox cd ./StandaloneFirefox && docker build $(BUILD_ARGS) -t $(NAME)/standalone-firefox:$(VERSION) . generate_standalone_firefox_debug: cd ./StandaloneDebug && ./generate.sh StandaloneFirefoxDebug node-firefox-debug Firefox $(VERSION) $(NAMESPACE) $(AUTHORS) -standalone_firefox_debug: generate_standalone_firefox_debug standalone_firefox +standalone_firefox_debug: firefox_debug generate_standalone_firefox_debug cd ./StandaloneFirefoxDebug && docker build $(BUILD_ARGS) -t $(NAME)/standalone-firefox-debug:$(VERSION) . generate_standalone_chrome: cd ./Standalone && ./generate.sh StandaloneChrome node-chrome Chrome $(VERSION) $(NAMESPACE) $(AUTHORS) -standalone_chrome: generate_standalone_chrome chrome +standalone_chrome: chrome generate_standalone_chrome cd ./StandaloneChrome && docker build $(BUILD_ARGS) -t $(NAME)/standalone-chrome:$(VERSION) . generate_standalone_chrome_debug: cd ./StandaloneDebug && ./generate.sh StandaloneChromeDebug node-chrome-debug Chrome $(VERSION) $(NAMESPACE) $(AUTHORS) -standalone_chrome_debug: chrome_debug generate_standalone_chrome_debug standalone_chrome +standalone_chrome_debug: chrome_debug generate_standalone_chrome_debug cd ./StandaloneChromeDebug && docker build $(BUILD_ARGS) -t $(NAME)/standalone-chrome-debug:$(VERSION) . generate_chrome_debug: From 1a0b29e70aa5cc4df2a8c5da9ec6157bad843809 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 31 Oct 2017 18:54:48 +0100 Subject: [PATCH 2/3] Updating Firefox to 56.0.2 --- NodeFirefox/Dockerfile.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeFirefox/Dockerfile.txt b/NodeFirefox/Dockerfile.txt index 133a2f831b..b90b7715c5 100644 --- a/NodeFirefox/Dockerfile.txt +++ b/NodeFirefox/Dockerfile.txt @@ -3,7 +3,7 @@ USER root #========= # Firefox #========= -ARG FIREFOX_VERSION=56.0 +ARG FIREFOX_VERSION=56.0.2 RUN apt-get update -qqy \ && apt-get -qqy --no-install-recommends install firefox \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* \ From b85903f149baa7a423ea5fb2e6df745cc3b3a463 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 31 Oct 2017 21:53:19 +0100 Subject: [PATCH 3/3] Updating Geckodriver version --- NodeFirefox/Dockerfile.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NodeFirefox/Dockerfile.txt b/NodeFirefox/Dockerfile.txt index b90b7715c5..99723968cf 100644 --- a/NodeFirefox/Dockerfile.txt +++ b/NodeFirefox/Dockerfile.txt @@ -18,7 +18,7 @@ RUN apt-get update -qqy \ #============ # GeckoDriver #============ -ARG GECKODRIVER_VERSION=0.19.0 +ARG GECKODRIVER_VERSION=0.19.1 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 \