From f74a961e1d440a6fdd2fb08522b080471c38987d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Thu, 1 Feb 2024 20:22:43 +0100 Subject: [PATCH] Sort packages and tools --- Dockerfile.vscode | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile.vscode b/Dockerfile.vscode index 4eb4908..038e55f 100644 --- a/Dockerfile.vscode +++ b/Dockerfile.vscode @@ -11,6 +11,7 @@ gpgcheck=1\n\ gpgkey=https://packages.microsoft.com/keys/microsoft.asc\n\ " > /etc/yum.repos.d/vscode.repo +# Install packages RUN dnf update -y \ && dnf install -y \ code \ @@ -24,23 +25,22 @@ RUN dnf update -y \ # Install some python tools RUN PIPX_HOME=/usr/local/lib/pipx PIPX_BIN_DIR=/usr/local/bin pipx install \ - poetry \ - pip-audit \ ipython \ + pip-audit \ + poetry \ && rm -rf /root/.cache # Install some go tools ENV GOBIN=/usr/local/bin -RUN go install github.com/haya14busa/goplay/cmd/goplay@latest \ - && go install github.com/go-delve/delve/cmd/dlv@latest \ - && go install golang.org/x/tools/gopls@latest \ - && go install honnef.co/go/tools/cmd/staticcheck@latest \ +RUN go install github.com/cweill/gotests/gotests@latest \ && go install github.com/fatih/gomodifytags@latest \ + && go install github.com/go-delve/delve/cmd/dlv@latest \ + && go install github.com/haya14busa/goplay/cmd/goplay@latest \ && go install github.com/josharian/impl@latest \ - && go install github.com/cweill/gotests/gotests@latest \ + && go install golang.org/x/tools/gopls@latest \ && go install golang.org/x/vuln/cmd/govulncheck@latest \ + && go install honnef.co/go/tools/cmd/staticcheck@latest \ && go clean -cache \ && rm -rf /root/go /root/.cache ENV GOBIN= -