From d50a96ede8bfcab58045cb0a3e8bb60ec697e84f Mon Sep 17 00:00:00 2001 From: Hakan Ensari Date: Thu, 25 Apr 2019 16:49:27 +0100 Subject: [PATCH] Install new Bundler in Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9bdb568..af19285 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ 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"]