From 983b245c488c28bce4520df32d34f59f3310b7b3 Mon Sep 17 00:00:00 2001 From: Sarah Wiechers Date: Wed, 15 Jun 2022 14:16:58 +0200 Subject: [PATCH] Minor changes --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a5561bf7..f1415eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY Gemfile.lock Gemfile.lock ENV BUNDLER_VERSION=2.3.5 RUN gem install rails bundler:2.3.5 -RUN if [ "$RAILS_ENV" = "production" ]; then bundle config set --local without test:development; else bundle config set --local without test; fi +RUN if [ "$RAILS_ENV" = "development" ]; then bundle config set --local without test; else bundle config set --local without test:development; fi RUN bundle install RUN chown -R barkeeper:barkeeper $RAILS_ROOT