diff --git a/28-stf-client/Dockerfile b/28-stf-client/Dockerfile index bd8903a..56080c6 100644 --- a/28-stf-client/Dockerfile +++ b/28-stf-client/Dockerfile @@ -71,13 +71,9 @@ RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ # stf-client build-essential \ - # gem specific_install - git \ + gem \ # Without rake fails to install stf-client - && gem install specific_install rake \ - # && gem install rake stf-client \ - # https://github.com/Malinskiy/stf-client/pull/10 - && gem specific_install https://github.com/mcfedr/stf-client.git add-adb-key \ + && gem install rake stf-client --no-doc \ && apt-mark auto '.*' > /dev/null \ && apt-mark manual $savedAptMark > /dev/null \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ diff --git a/29-stf-client/Dockerfile b/29-stf-client/Dockerfile index 3402b50..39b8459 100644 --- a/29-stf-client/Dockerfile +++ b/29-stf-client/Dockerfile @@ -71,13 +71,9 @@ RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ # stf-client build-essential \ - # gem specific_install - git \ + gem \ # Without rake fails to install stf-client - && gem install specific_install rake \ - # && gem install rake stf-client \ - # https://github.com/Malinskiy/stf-client/pull/10 - && gem specific_install https://github.com/mcfedr/stf-client.git add-adb-key \ + && gem install rake stf-client --no-doc \ && apt-mark auto '.*' > /dev/null \ && apt-mark manual $savedAptMark > /dev/null \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ diff --git a/Dockerfile.template b/Dockerfile.template index f70ea17..3580525 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -71,13 +71,9 @@ RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ # stf-client build-essential \ - # gem specific_install - git \ + gem \ # Without rake fails to install stf-client - && gem install specific_install rake \ - # && gem install rake stf-client \ - # https://github.com/Malinskiy/stf-client/pull/10 - && gem specific_install https://github.com/mcfedr/stf-client.git add-adb-key \ + && gem install rake stf-client --no-doc \ && apt-mark auto '.*' > /dev/null \ && apt-mark manual $savedAptMark > /dev/null \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \