diff --git a/docker/Emulator_arm b/docker/Emulator_arm index 8589d6c..bec6c0a 100644 --- a/docker/Emulator_arm +++ b/docker/Emulator_arm @@ -90,11 +90,11 @@ RUN rm ${ANDROID_HOME}/tools/emulator \ ENV LD_LIBRARY_PATH=$ANDROID_HOME/emulator/lib64:$ANDROID_HOME/emulator/lib64/qt/lib #============================================== -# Download chrome driver v2.26 -# to be able to use chrome browser in emulator -# Issue: https://github.com/butomo1989/docker-android/commit/6406504f944dae73d0a0c5d8e71a17a47dff9b33 +# Download latest version of chromedriver +# to be able to use Chrome browser in emulator #============================================== -RUN wget -nv -O chrome.zip "https://chromedriver.storage.googleapis.com/2.26/chromedriver_linux64.zip" \ +RUN LATEST_VERSION=$(curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE) \ + && wget -nv -O chrome.zip "https://chromedriver.storage.googleapis.com/$LATEST_VERSION/chromedriver_linux64.zip" \ && unzip -x chrome.zip \ && rm chrome.zip diff --git a/docker/Emulator_x86 b/docker/Emulator_x86 index b9aeef3..f5ed696 100644 --- a/docker/Emulator_x86 +++ b/docker/Emulator_x86 @@ -100,11 +100,11 @@ RUN yes | sdkmanager --licenses && \ sdkmanager "platforms;android-${API_LEVEL}" "system-images;android-${API_LEVEL};${IMG_TYPE};${SYS_IMG}" "emulator" #============================================== -# Download chrome driver v2.26 -# to be able to use chrome browser in emulator -# Issue: https://github.com/butomo1989/docker-android/commit/6406504f944dae73d0a0c5d8e71a17a47dff9b33 +# Download latest version of chromedriver +# to be able to use Chrome browser in emulator #============================================== -RUN wget -nv -O chrome.zip "https://chromedriver.storage.googleapis.com/2.26/chromedriver_linux64.zip" \ +RUN LATEST_VERSION=$(curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE) \ + && wget -nv -O chrome.zip "https://chromedriver.storage.googleapis.com/$LATEST_VERSION/chromedriver_linux64.zip" \ && unzip -x chrome.zip \ && rm chrome.zip