From cc9d209b90949a513d7162fde74acc912d031119 Mon Sep 17 00:00:00 2001 From: Samuel Padgett Date: Thu, 2 Apr 2020 09:07:43 -0400 Subject: [PATCH] Skip geckodriver download for product builds --- Dockerfile.product | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.product b/Dockerfile.product index 0df06233f1d..11e3eb8106f 100644 --- a/Dockerfile.product +++ b/Dockerfile.product @@ -22,8 +22,9 @@ RUN tar fx yarn-offline.tar # bootstrap yarn so we can install and run the other tools. RUN container-entrypoint npm install ./yarn-1.9.4.tgz -# prevent download of chromedriver, sass binary, and node headers as part of module installs +# prevent download of chromedriver, geckodriver, sass binary, and node headers as part of module installs ENV CHROMEDRIVER_SKIP_DOWNLOAD=true \ + GECKODRIVER_SKIP_DOWNLOAD=true \ SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true \ NPM_CONFIG_TARBALL=$HOME/node-v8.9.4-headers.tar.gz