From 464d6b2d17719f042983bfea897f447fd67510cc Mon Sep 17 00:00:00 2001 From: Adar Nimrod Date: Sun, 3 Apr 2022 22:48:53 +0300 Subject: [PATCH] fixup! No more go get. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cb3b646..d911b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -242,9 +242,9 @@ RUN apt-get update && \ mkdir /usr/local/share/bfg && \ wget 'https://search.maven.org/remote_content?g=com.madgag&a=bfg&v=LATEST' -qO /usr/local/share/bfg/bfg.jar && \ curl --silent --location --fail --show-error "https://github.com/genuinetools/reg/releases/download/v0.16.1/reg-$(go env GOOS)-$(go env GOARCH)" --output /tmp/reg && \ - install -o root -g root -m 0755 /usr/local/bin/reg /tmp/reg && \ + install -o root -g root -m 0755 /tmp/reg /usr/local/bin/reg && \ curl --silent --location --fail --show-error "https://github.com/rancher/rke/releases/download/v1.3.8/rke_$(go env GOOS)-$(go env GOARCH)" --output /tmp/rke && \ - install -o root -g root -m 0755 /usr/local/bin/rke /tmp/rke && \ + install -o root -g root -m 0755 /tmp/rke /usr/local/bin/rke && \ _PIPENV_COMPLETE=bash_source pipenv > /etc/bash_completion.d/pipenv && \ rabbitmqadmin --bash-completion > /etc/bash_completion.d/rabbitmqadmin && \ poetry completions bash > /etc/bash_completion.d/poetry && \ -- GitLab