mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 11:02:30 +01:00
11 lines
240 B
Docker
11 lines
240 B
Docker
FROM ruby:2.6.5
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
ADD Gemfile /app/Gemfile
|
|
ADD Gemfile.lock /app/Gemfile.lock
|
|
RUN gem install bundler
|
|
RUN bundle install --jobs=8 --without development test
|
|
ADD . /app
|
|
CMD ["unicorn", "-c", "./config/unicorn.rb"]
|