Lightweight ubuntu docker image with all the dependencies to run flutter test, tagging stable versions.
You can pull the image from Docker Hub using the docker pull minddocdev/flutter
command.
We use automated build set up.
docker pull minddocdev/flutter
To jump into the container's bash
shell
docker run -it minddocdev/flutter /bin/sh
For instance, if you want to generate golden files locally (useful to be checked on CI):
docker run -ti -v ${PWD}:/myproject -w /myproject minddocdev/flutter \
/bin/sh -c "flutter packages get && flutter test --update-goldens test"
You can also build the image yourself. Checkout the repository
git clone https://github.com/minddocdev/flutter
cd flutter
docker build -t minddocdev/flutter .
docker images minddocdev/flutter