Closed luke0zong closed 2 years ago
When using Docker as the Vagrant provider, there will be an error during Installing IBM Cloud CLI
Installing IBM Cloud CLI
at wget -O bluemix-cli.tar.gz https://clis.cloud.ibm.com/download/bluemix-cli/1.4.0/linux64
wget -O bluemix-cli.tar.gz https://clis.cloud.ibm.com/download/bluemix-cli/1.4.0/linux64
default: ************************************ default: Installing IBM Cloud CLI... default: ************************************ default: default: sh: 2: wget: not found
Seems like the rofrano/vagrant-provider:debian image lacks wget.
rofrano/vagrant-provider:debian
wget
Adding wget at the end of
apt-get install -y git vim tree python3 python3-pip python3-venv
in Vagrantfile solves this problem.
Or simply change the docker image to rofrano/vagrant-provider:ubuntu also works.
rofrano/vagrant-provider:ubuntu
Fixed. Added wget to rofrano/vagrant-provider:ubuntu
When using Docker as the Vagrant provider, there will be an error during
Installing IBM Cloud CLI
at
wget -O bluemix-cli.tar.gz https://clis.cloud.ibm.com/download/bluemix-cli/1.4.0/linux64
Seems like the
rofrano/vagrant-provider:debian
image lackswget
.Adding
wget
at the end ofin Vagrantfile solves this problem.
Or simply change the docker image to
rofrano/vagrant-provider:ubuntu
also works.