frankfurter/Dockerfile

10 lines
231 B
Docker
Raw Normal View History

2017-06-14 22:15:46 +02:00
FROM ruby:2.4.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
2017-01-10 13:21:19 +01:00
CMD ./wait-for-it.sh db:5432 -s -- unicorn -c /app/config/unicorn.rb