From 6bc77f1d78420dc88bd157346d24539668215781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justin=20Ren=C3=A9=20Back?= Date: Thu, 8 Jun 2023 11:48:01 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8c57bd2d..f7b10f2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,6 @@ RUN apt-get update -qq && apt-get install -y build-essential libpq-dev postgresq RUN gem install bundler -v 2.2.6 COPY Gemfile Gemfile.lock ./ -RUN bundle check || bundle install --jobs 4 --retry 3 +RUN bundle check || bundle install --without development test --jobs 4 --retry 3 CMD ["bash", "docker-entrypoint.sh"]