Thorium-android-app/Dockerfile

13 lines
306 B
Docker
Raw Normal View History

2020-07-11 17:34:45 +02:00
FROM menny/android:1.13.6
2020-07-11 17:34:45 +02:00
# 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