Let docker image install fastlane too for Linux (#30530)

This commit is contained in:
xster
2019-04-04 18:11:14 -07:00
committed by GitHub
parent 73687a9771
commit cdc6919350

View File

@@ -100,6 +100,10 @@ ENV LANG en_US.UTF-8
# Install coveralls and Firebase
# This is why we need ruby installed.
RUN gem install coveralls
RUN gem install bundler
# Skip all the documentation (-N) since it's just on CI.
RUN gem install coveralls -N
RUN gem install bundler -N
# Install fastlane which is used on Linux to build and deploy Android
# builds to the Play Store.
RUN gem install fastlane -N