From 8ffdf1ae895d78fe2c44edc85245936605a86393 Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Thu, 6 Apr 2023 21:16:13 +0200 Subject: [PATCH] fix: don't use bundle --without flag as it is deprecated Signed-off-by: Louis Vallat --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1508fc3..084f4de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,8 @@ RUN apt-get update && \ WORKDIR /count_anything COPY Gemfile Gemfile.lock package.json yarn.lock ./ -RUN bundle install --without development test && \ +RUN bundle config set --local without 'development test' && \ + bundle install && \ yarn install && \ rails assets:precompile