thorium-fork/Dockerfile

14 lines
344 B
Docker
Raw Normal View History

2020-07-11 11:48:00 -07:00
FROM runmymind/docker-android-sdk:latest
2020-07-11 08:34:45 -07: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 09:31:47 -07:00
RUN gem update --system
2020-07-11 11:48:00 -07:00
RUN gem install bundle
2020-07-11 08:34:45 -07:00
RUN bundle install