2016-04-06 00:49:19 +02:00
|
|
|
FROM ruby:2.3.0
|
|
|
|
|
2016-04-11 15:28:22 +02:00
|
|
|
RUN mkdir /app
|
|
|
|
WORKDIR /app
|
|
|
|
ADD Gemfile /app/Gemfile
|
|
|
|
ADD Gemfile.lock /app/Gemfile.lock
|
|
|
|
RUN bundle install --without development test
|
|
|
|
ADD . /app
|
|
|
|
CMD bundle exec unicorn -c /app/config/unicorn.rb
|