diff --git a/Dockerfile b/Dockerfile index 0f693da..fcaa4e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,11 @@ RUN apt-get update && apt-get install -y \ curl \ unzip && \ cd /opt/ && \ - curl -s https://api.github.com/repos/balena-io/balena-cli/releases/latest | \ - grep browser_download_url.*balena-cli-v.*-linux-x64-standalone.zip | \ - cut -d : -f 2,3 | \ - xargs -n 1 curl -O -sSL && \ + #curl -s https://api.github.com/repos/balena-io/balena-cli/releases/latest | \ + # grep browser_download_url.*balena-cli-v.*-linux-x64-standalone.zip | \ + # cut -d : -f 2,3 | \ + # xargs -n 1 curl -O -sSL && \ + curl -O -sSL https://github.com/balena-io/balena-cli/releases/download/v11.31.17/balena-cli-v11.31.17-linux-x64-standalone.zip && \ unzip balena-cli-*-linux-x64-standalone.zip && \ ln -s /opt/balena-cli/balena /usr/bin/ && \ apt-get purge -y \