Fastlane
This commit is contained in:
parent
2fa99d28c5
commit
6fc28bd9fb
32
Dockerfile
32
Dockerfile
@ -1,13 +1,23 @@
|
|||||||
FROM runmymind/docker-android-sdk:latest
|
FROM runmymind/docker-android-sdk:latest
|
||||||
|
|
||||||
# install OS packages
|
# Installing build tools
|
||||||
RUN apt-get --quiet update --yes
|
RUN apt-get update && \
|
||||||
RUN apt-get --quiet install --yes ruby ruby-dev
|
apt-get install -y \
|
||||||
# We use this for xxd hex->binary
|
build-essential \
|
||||||
RUN apt-get --quiet install --yes vim-common
|
ruby \
|
||||||
# install FastLane
|
ruby-dev
|
||||||
COPY Gemfile.lock .
|
|
||||||
COPY Gemfile .
|
# Installing fastlane
|
||||||
RUN gem update --system
|
RUN gem install fastlane
|
||||||
RUN gem install bundles
|
|
||||||
RUN bundle install
|
# Installing bundle
|
||||||
|
RUN gem install bundle
|
||||||
|
|
||||||
|
# Install gradle
|
||||||
|
RUN wget https://services.gradle.org/distributions/gradle-6.1.1-bin.zip
|
||||||
|
RUN mkdir /opt/gradle
|
||||||
|
RUN unzip -d /opt/gradle gradle-6.1.1-bin.zip
|
||||||
|
RUN export PATH=$PATH:/opt/gradle/gradle-6.1.1/bin
|
||||||
|
|
||||||
|
# Work directory
|
||||||
|
WORKDIR /app
|
Loading…
Reference in New Issue
Block a user