From f68772fd6a019b1ff21fe89e87ab0626817e62bb Mon Sep 17 00:00:00 2001 From: David Sterry Date: Thu, 14 Oct 2021 12:00:38 -0700 Subject: [PATCH] add bundle flag to suppress root warning (#16557) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0b88b49a8..ab29e79b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,6 +56,7 @@ COPY Gemfile* package.json yarn.lock /opt/mastodon/ RUN cd /opt/mastodon && \ bundle config set deployment 'true' && \ bundle config set without 'development test' && \ + bundle config set silence_root_warning true && \ bundle install -j"$(nproc)" && \ yarn install --pure-lockfile