Sha256: 20aa4f58e057c55e8ed906f48087e3c802ca1a813f22e655e8cb5a6c38198c90
Contents?: true
Size: 780 Bytes
Versions: 7
Compression:
Stored size: 780 Bytes
Contents
FROM centos:6.6 MAINTAINER support@brightbox.co.uk RUN yum update -y && yum -y install \ epel-release \ gcc \ git \ make \ qemu-img \ ruby-devel \ rubygems RUN yum update -y && yum -y install \ python-setuptools \ python-requests \ python-devel \ python-simplejson \ python-futures \ lz4 RUN easy_install pip RUN pip install --upgrade setuptools RUN pip install 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:old_qemu
Version data entries
7 entries across 7 versions & 1 rubygems