thorium-fork/Dockerfile
Stefan Schueller 2d92aa2459 Fastlane
2020-07-11 20:48:00 +02:00

14 lines
344 B
Docker

FROM runmymind/docker-android-sdk:latest
# 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 update --system
RUN gem install bundle
RUN bundle install