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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,6 +100,10 @@ ENV LANG en_US.UTF-8
# Install coveralls and Firebase # Install coveralls and Firebase
# This is why we need ruby installed. # This is why we need ruby installed.
RUN gem install coveralls # Skip all the documentation (-N) since it's just on CI.
RUN gem install bundler 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