mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 02:52:49 +01:00
10 lines
212 B
Docker
10 lines
212 B
Docker
FROM ruby:2.3.0
|
|
|
|
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
|