frankfurter/Dockerfile

10 lines
228 B
Docker
Raw Normal View History

2016-05-03 15:26:54 +02:00
FROM ruby:2.3.1
2016-04-06 00:49:19 +02:00
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
2016-04-12 15:57:20 +02:00
CMD ./wait-for-it.sh db:5432 -- unicorn -c /app/config/unicorn.rb