From a690ef7684271709bc7ece63ab9c6a853a39d478 Mon Sep 17 00:00:00 2001 From: mopotopo Date: Fri, 4 Sep 2020 17:44:01 +0200 Subject: [PATCH] Update Dockerfile Fix bundler version because of the error at docker-compose call and further errors. "rails (4.2.7.1) has dependency bundler (< 2.0, >= 1.3.0), which is unsatisfied by the current bundler version 2.1.4, so the dependency is being ignored" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 11063b6..49b1d6e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ WORKDIR /app # will be cached unless changes to one of those two files # are made. COPY Gemfile Gemfile.lock ./ -RUN gem install bundler && bundle install --jobs 20 --retry 5 +RUN gem install bundler -v 1.11.2 && bundle install --jobs 20 --retry 5 # Copy the main application. COPY . ./