All of lore.kernel.org
 help / color / mirror / Atom feed
* [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker
@ 2019-04-11 18:46 Fathi Boudra
  2019-04-11 18:46 ` [Fuego] [PATCH 2/2] Dockerfile.test: upgrade to chromedriver 73.0.3683.68 Fathi Boudra
  2019-05-01 23:53 ` [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker Tim.Bird
  0 siblings, 2 replies; 4+ messages in thread
From: Fathi Boudra @ 2019-04-11 18:46 UTC (permalink / raw)
  To: fuego

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
---
 Dockerfile.test | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile.test b/Dockerfile.test
index b6c939e..b99e1aa 100644
--- a/Dockerfile.test
+++ b/Dockerfile.test
@@ -15,7 +15,7 @@ RUN apt-get update -q=2 ;\
         python3-pillow ;\
     # Install Docker
     curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - ;\
-    echo "deb https://download.docker.com/linux/debian jessie stable" > /etc/apt/sources.list.d/docker.list ;\
+    echo "deb https://download.docker.com/linux/debian stretch stable" > /etc/apt/sources.list.d/docker.list ;\
     apt-get update -q=2 ;\
     apt-get -q=2 -V --no-install-recommends install docker-ce ;\
     # Install Python Dependencies from PyPI
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Fuego] [PATCH 2/2] Dockerfile.test: upgrade to chromedriver 73.0.3683.68
  2019-04-11 18:46 [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker Fathi Boudra
@ 2019-04-11 18:46 ` Fathi Boudra
  2019-05-01 23:53   ` Tim.Bird
  2019-05-01 23:53 ` [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker Tim.Bird
  1 sibling, 1 reply; 4+ messages in thread
From: Fathi Boudra @ 2019-04-11 18:46 UTC (permalink / raw)
  To: fuego

With the upgrade to Debian Stretch, chromium package has been updated to
73.0.3683.75-1~deb9u1 (from debian-security). The matching chromedriver
version is 73.0.3683.68.

Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
---
 Dockerfile.test | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile.test b/Dockerfile.test
index b99e1aa..559259c 100644
--- a/Dockerfile.test
+++ b/Dockerfile.test
@@ -24,7 +24,7 @@ RUN apt-get update -q=2 ;\
         pexpect \
         selenium ;\
     # Install Chrome Driver for SeleniumHQ
-    curl https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip -o chrome-driver.zip ;\
+    curl https://chromedriver.storage.googleapis.com/73.0.3683.68/chromedriver_linux64.zip -o chrome-driver.zip ;\
     unzip chrome-driver.zip -d /usr/local/bin ;\
     chmod +x /usr/local/bin/chromedriver ;\
     rm -rf /var/lib/apt/lists/* chrome-driver.zip ;\
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker
  2019-04-11 18:46 [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker Fathi Boudra
  2019-04-11 18:46 ` [Fuego] [PATCH 2/2] Dockerfile.test: upgrade to chromedriver 73.0.3683.68 Fathi Boudra
@ 2019-05-01 23:53 ` Tim.Bird
  1 sibling, 0 replies; 4+ messages in thread
From: Tim.Bird @ 2019-05-01 23:53 UTC (permalink / raw)
  To: fathi.boudra, fuego

Sorry for the slow response here.

Applied.  Thanks!
 -- Tim


> -----Original Message-----
> From: Fathi Boudra
> 
> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
> ---
>  Dockerfile.test | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Dockerfile.test b/Dockerfile.test
> index b6c939e..b99e1aa 100644
> --- a/Dockerfile.test
> +++ b/Dockerfile.test
> @@ -15,7 +15,7 @@ RUN apt-get update -q=2 ;\
>          python3-pillow ;\
>      # Install Docker
>      curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
> ;\
> -    echo "deb https://download.docker.com/linux/debian jessie stable" >
> /etc/apt/sources.list.d/docker.list ;\
> +    echo "deb https://download.docker.com/linux/debian stretch stable" >
> /etc/apt/sources.list.d/docker.list ;\
>      apt-get update -q=2 ;\
>      apt-get -q=2 -V --no-install-recommends install docker-ce ;\
>      # Install Python Dependencies from PyPI
> --
> 2.20.1
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Fuego] [PATCH 2/2] Dockerfile.test: upgrade to chromedriver 73.0.3683.68
  2019-04-11 18:46 ` [Fuego] [PATCH 2/2] Dockerfile.test: upgrade to chromedriver 73.0.3683.68 Fathi Boudra
@ 2019-05-01 23:53   ` Tim.Bird
  0 siblings, 0 replies; 4+ messages in thread
From: Tim.Bird @ 2019-05-01 23:53 UTC (permalink / raw)
  To: fathi.boudra, fuego

Applied.  Thanks!
 -- Tim


> -----Original Message-----
> From: Fathi Boudra
> 
> With the upgrade to Debian Stretch, chromium package has been updated to
> 73.0.3683.75-1~deb9u1 (from debian-security). The matching chromedriver
> version is 73.0.3683.68.
> 
> Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
> ---
>  Dockerfile.test | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Dockerfile.test b/Dockerfile.test
> index b99e1aa..559259c 100644
> --- a/Dockerfile.test
> +++ b/Dockerfile.test
> @@ -24,7 +24,7 @@ RUN apt-get update -q=2 ;\
>          pexpect \
>          selenium ;\
>      # Install Chrome Driver for SeleniumHQ
> -    curl
> https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zi
> p -o chrome-driver.zip ;\
> +    curl
> https://chromedriver.storage.googleapis.com/73.0.3683.68/chromedriver_li
> nux64.zip -o chrome-driver.zip ;\
>      unzip chrome-driver.zip -d /usr/local/bin ;\
>      chmod +x /usr/local/bin/chromedriver ;\
>      rm -rf /var/lib/apt/lists/* chrome-driver.zip ;\
> --
> 2.20.1
> 
> _______________________________________________
> Fuego mailing list
> Fuego@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/fuego

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-01 23:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-11 18:46 [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker Fathi Boudra
2019-04-11 18:46 ` [Fuego] [PATCH 2/2] Dockerfile.test: upgrade to chromedriver 73.0.3683.68 Fathi Boudra
2019-05-01 23:53   ` Tim.Bird
2019-05-01 23:53 ` [Fuego] [PATCH 1/2] Dockerfile.test: use Debian Stretch repository to install docker Tim.Bird

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.