From a653066eacc972f1f5d5f3b3a585f9101616d478 Mon Sep 17 00:00:00 2001 From: Asif Date: Mon, 21 Nov 2022 19:40:04 +0530 Subject: [PATCH] update dockerfile to use --no-document instead of deprecated --no-ri --no-rdoc (#33) --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3428d6d..729eff9 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ FROM nicbet/phoenix:1.6.11 RUN apt-get install -y ruby \ - && gem install --no-ri --no-rdoc htmlbeautifier -v 1.3.1 \ + && gem install --no-document htmlbeautifier -v 1.3.1 \ && npm i -g yarn \ && apt-get autoremove -y \ && apt-get clean -y \