Skip to content

Commit

Permalink
TEMP: Fix the version of balena-cli to v11.31.17
Browse files Browse the repository at this point in the history
Version 11.31.18 seems to have introduced a bug with balena deploy
commands:
  https://forums.balena.io/t/balena-deploy-does-not-work-suddenly/100741/11

This change will be reverted once the current version works again.
  • Loading branch information
bekriebel committed Apr 27, 2020
1 parent 29f7f2b commit fdf12f1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit fdf12f1

Please sign in to comment.