Stop using deprecated --without flag

This commit is contained in:
Hakan Ensari 2019-12-20 01:03:45 +00:00
parent c222476d6a
commit 85c241d756

View File

@ -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"]