Sha256: 857823bb17917d4f1083b5d5fe38bb1fedf0bf2e736931b40067213314cd9e31
Contents?: true
Size: 351 Bytes
Versions: 7
Compression:
Stored size: 351 Bytes
Contents
FROM ruby:2.3.1 RUN apt-get update RUN apt-get install ruby-dev -y RUN gem install bundler ENV APP_ROOT /container ADD . $APP_ROOT WORKDIR $APP_ROOT COPY Gemfile $APP_ROOT COPY Gemfile.lock $APP_ROOT COPY etude_for_aws.gemspec $APP_ROOT COPY . $APP_ROOT RUN bundle RUN bundle exec rspec RUn bundle exec rake build EXPOSE 5000 CMD ["bin/console"]
Version data entries
7 entries across 7 versions & 1 rubygems