From bb832d491e1af6ff14e14f9b9dc7f077624329f3 Mon Sep 17 00:00:00 2001 From: softana <70073104+softana@users.noreply.github.com> Date: Mon, 7 Dec 2020 11:33:09 -0600 Subject: [PATCH] Update Dockerfile Change double hyphen "--" to single hyphen "-" to prevent build errors: Fix invalid option no-ri-no-rdoc > ERROR: While executing gem ... (OptionParser::InvalidOption) invalid option: --no-ri --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index abf97425..78155863 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get install -y cmake curl git ruby bundler wget unzip \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -RUN gem install bundler travis --no-ri --no-rdoc +RUN gem install bundler travis -no-ri -no-rdoc RUN git clone --depth 1 https://github.com/travis-ci/travis-build ~/.travis/travis-build RUN bundle install --gemfile ~/.travis/travis-build/Gemfile