thorium-fork/Dockerfile

14 lines
345 B
Docker
Raw Normal View History

2020-07-11 20:48:00 +02:00
FROM runmymind/docker-android-sdk:latest
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 .
2020-07-11 18:31:47 +02:00
RUN gem update --system
2020-07-11 21:03:21 +02:00
RUN gem install bundles
2020-07-11 17:34:45 +02:00
RUN bundle install