frankfurter/Dockerfile

10 lines
267 B
Docker
Raw Normal View History

2017-01-03 14:37:40 +01:00
FROM ruby:2.4.0
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-03 14:37:40 +01:00
CMD ./wait-for-it.sh db:5432 -s -- wait-for-it.sh memcache:11211 -s -- unicorn -c /app/config/unicorn.rb