cirruslabs / docker-images-flutter

Docker Images for Flutter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

master image not up to date

VengefulAncient opened this issue · comments

We are currently trying to use flutter channel master in our CI to get around some dependencies issues, but the command fails with a git error. So we wanted to switch to cirrusci/flutter:master instead, but this image has last been updated 3 years go. Images for dev, beta and stable channels are up to date, can you please update this one too? Thanks!

We stopped doing the master tag since we can't update the image that frequently. Please use latest tag and manually switch channels in your scripts.

For anyone who's looking how to implement such a workaround with latest image:

cd /sdks/flutter && git config remote.origin.fetch "+refs/heads/master:refs/remotes/origin/master"
flutter channel master
flutter upgrade

Thank you! 🙌