From 3e874af312c7febbccea901beaad5a725625c8d4 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 12 Mar 2020 07:52:44 -0500 Subject: [PATCH] shrink it --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 328a26ec..57a714f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -77,7 +77,7 @@ RUN gem install rubocop:0.74 rubocop-rails rubocop-github:0.13 # Install shellcheck # ###################### RUN wget -qO- "https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \ - && cp "shellcheck-stable/shellcheck" /usr/bin/ + && mv "shellcheck-stable/shellcheck" /usr/bin/ ##################### # Install Go Linter # @@ -89,7 +89,7 @@ RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master # Install TFLint # ################## RUN curl -L "$(curl -Ls https://api.github.com/repos/terraform-linters/tflint/releases/latest | grep -o -E "https://.+?_linux_amd64.zip")" -o tflint.zip && unzip tflint.zip && rm tflint.zip \ - && cp "tflint" /usr/bin/ + && mv "tflint" /usr/bin/ ########################################### # Load GitHub Env Vars for Github Actions #