From d8156e573db1042e5a9d5cde49bdffb738e0035b Mon Sep 17 00:00:00 2001 From: Stefan Schueller Date: Sun, 12 Jul 2020 13:38:38 +0200 Subject: [PATCH] Fastlane --- Dockerfile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2d3e526..32eb2b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1,14 @@ -FROM opengamer/android-sdk-gradle-fastlane \ No newline at end of file +# This Dockerfile creates a static build image for CI +# https://github.com/menny/docker_android +FROM menny/android:1.13.6 + +# install OS packages +RUN apt-get --quiet update --yes +RUN apt-get --quiet install --yes ruby ruby-dev +# We use this for xxd hex->binary +RUN apt-get --quiet install --yes vim-common +# install FastLane +COPY Gemfile.lock . +COPY Gemfile . +RUN gem install bundler +RUN bundle install \ No newline at end of file