From 10ebf1328730535eb52cb7d224c638294ee90637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Eduardo=20Jer=C3=A9z=20Gir=C3=B3n?= Date: Fri, 9 Aug 2024 23:44:25 -0600 Subject: [PATCH] Update Dockerfile.cicd and Dockerfile.dev with verbose flag for wget commands --- docker/Dockerfile.cicd | 8 ++++---- docker/Dockerfile.dev | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/Dockerfile.cicd b/docker/Dockerfile.cicd index 735f67b..e81e96e 100644 --- a/docker/Dockerfile.cicd +++ b/docker/Dockerfile.cicd @@ -24,25 +24,25 @@ COPY --from=golang /usr/local/go /usr/local/go ENV PATH "$PATH:/usr/local/go/bin" # Install task -RUN wget https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.tar.gz && \ +RUN wget --no-verbose https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.tar.gz && \ tar -xzf task_linux_amd64.tar.gz && \ mv ./task /usr/local/bin/task && \ chmod 777 /usr/local/bin/task # Install GitHub CLI -RUN wget https://github.com/cli/cli/releases/download/v2.52.0/gh_2.52.0_linux_amd64.tar.gz && \ +RUN wget --no-verbose https://github.com/cli/cli/releases/download/v2.52.0/gh_2.52.0_linux_amd64.tar.gz && \ tar -xzf gh_2.52.0_linux_amd64.tar.gz && \ mv gh_2.52.0_linux_amd64/bin/gh /usr/local/bin/gh && \ chmod 777 /usr/local/bin/gh # Install air -RUN wget https://github.com/cosmtrek/air/releases/download/v1.52.3/air_1.52.3_linux_amd64.tar.gz && \ +RUN wget --no-verbose https://github.com/cosmtrek/air/releases/download/v1.52.3/air_1.52.3_linux_amd64.tar.gz && \ tar -xzf air_1.52.3_linux_amd64.tar.gz && \ mv ./air /usr/local/bin/air && \ chmod 777 /usr/local/bin/air # Install golangci-lint -RUN wget --no-verbose https://github.com/golangci/golangci-lint/releases/download/v1.59.1/golangci-lint-1.59.1-linux-amd64.tar.gz && \ +RUN wget --no-verbose --no-verbose https://github.com/golangci/golangci-lint/releases/download/v1.59.1/golangci-lint-1.59.1-linux-amd64.tar.gz && \ tar -xzf golangci-lint-1.59.1-linux-amd64.tar.gz && \ mv ./golangci-lint-1.59.1-linux-amd64/golangci-lint /usr/local/bin/golangci-lint && \ chmod 777 /usr/local/bin/golangci-lint diff --git a/docker/Dockerfile.dev b/docker/Dockerfile.dev index d237991..05beac6 100644 --- a/docker/Dockerfile.dev +++ b/docker/Dockerfile.dev @@ -24,25 +24,25 @@ COPY --from=golang /usr/local/go /usr/local/go ENV PATH "$PATH:/usr/local/go/bin" # Install task -RUN wget https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.tar.gz && \ +RUN wget --no-verbose https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.tar.gz && \ tar -xzf task_linux_amd64.tar.gz && \ mv ./task /usr/local/bin/task && \ chmod 777 /usr/local/bin/task # Install GitHub CLI -RUN wget https://github.com/cli/cli/releases/download/v2.52.0/gh_2.52.0_linux_amd64.tar.gz && \ +RUN wget --no-verbose https://github.com/cli/cli/releases/download/v2.52.0/gh_2.52.0_linux_amd64.tar.gz && \ tar -xzf gh_2.52.0_linux_amd64.tar.gz && \ mv gh_2.52.0_linux_amd64/bin/gh /usr/local/bin/gh && \ chmod 777 /usr/local/bin/gh # Install air -RUN wget https://github.com/cosmtrek/air/releases/download/v1.52.3/air_1.52.3_linux_amd64.tar.gz && \ +RUN wget --no-verbose https://github.com/cosmtrek/air/releases/download/v1.52.3/air_1.52.3_linux_amd64.tar.gz && \ tar -xzf air_1.52.3_linux_amd64.tar.gz && \ mv ./air /usr/local/bin/air && \ chmod 777 /usr/local/bin/air # Install golangci-lint -RUN wget --no-verbose https://github.com/golangci/golangci-lint/releases/download/v1.59.1/golangci-lint-1.59.1-linux-amd64.tar.gz && \ +RUN wget --no-verbose --no-verbose https://github.com/golangci/golangci-lint/releases/download/v1.59.1/golangci-lint-1.59.1-linux-amd64.tar.gz && \ tar -xzf golangci-lint-1.59.1-linux-amd64.tar.gz && \ mv ./golangci-lint-1.59.1-linux-amd64/golangci-lint /usr/local/bin/golangci-lint && \ chmod 777 /usr/local/bin/golangci-lint