Sha256: 63aa2ded2b532fb8245ea77380095b12866934b41f2cf39ca48edcead435d7de
Contents?: true
Size: 681 Bytes
Versions: 7
Compression:
Stored size: 681 Bytes
Contents
FROM ubuntu:trusty MAINTAINER support@brightbox.co.uk RUN apt-get update && apt-get install -y -qq software-properties-common RUN apt-add-repository ppa:brightbox/ruby-ng RUN apt-get update && apt-get install -y -qq \ build-essential \ git \ qemu-utils \ liblz4-tool \ curl \ ruby1.9.3 \ ruby-dev \ python-swiftclient RUN echo "gem: --no-ri --no-rdoc" >> "$HOME/.gemrc" RUN gem install bundler RUN mkdir /app WORKDIR /app COPY Gemfile /app/Gemfile COPY Gemfile.lock /app/Gemfile.lock COPY uricp.gemspec /app/uricp.gemspec COPY lib/uricp/version.rb /app/lib/uricp/version.rb RUN bundle install --deployment COPY . /app CMD bundle exec rake features:new_qemu
Version data entries
7 entries across 7 versions & 1 rubygems