From 85c241d756fcd53e4824156703bac4afb08ae5ad Mon Sep 17 00:00:00 2001 From: Hakan Ensari Date: Fri, 20 Dec 2019 01:03:45 +0000 Subject: [PATCH] Stop using deprecated --without flag --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index af19285..58791dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /app ADD Gemfile /app/Gemfile ADD Gemfile.lock /app/Gemfile.lock RUN gem install bundler -RUN bundle install --jobs=8 --without development test +RUN bundle config set without "development test" +RUN bundle install --jobs=8 ADD . /app CMD ["unicorn", "-c", "./config/unicorn.rb"]