Wget: not found

I created a cron this way
ee cron create cloud.bixbyte.io --command=‘wget -q -O- https://cloud.bixbyte.io/cron/index’ --schedule=’* * * * *’

When i run
ee cron run 7

Gives the error
sh: 1: wget: not found

Am new please help me figure it out.

apt update
apt install wget

Thank you have run the above, But still the error is there

You will need to install it in the container. Something like this: ee shell cloud.bixbyte.io --command=‘apt update && apt install wget'
Or just open up an interactive shell in the container and do it. ee shell cloud.bixbyte.io do stuff, then exit

Thank you it worked

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.