mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-21 18:42:29 +01:00
12 lines
280 B
Docker
12 lines
280 B
Docker
FROM ruby:2.7.0
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
ADD Gemfile /app/Gemfile
|
|
ADD Gemfile.lock /app/Gemfile.lock
|
|
RUN gem install bundler
|
|
RUN bundle config set without "development test"
|
|
RUN bundle install --jobs=8
|
|
ADD . /app
|
|
CMD ["bundle", "exec", "unicorn", "-c", "./config/unicorn.rb"]
|