This repository was archived by the owner on Oct 8, 2023. It is now read-only.

Description
I am not a Flutter expert, but Flutter writes stuff to special files and directories when installing packages and whatnot.
If one is using Docker images such as this one simultaneously with other environments (other Docker images, or a local installation) then you are not guaranteed a clean slate because you suggest -v "$PWD":/project which mirrors all files between the local environment and the container (including these special files and directories).
Shouldn't you have anonymous volumes for these special files and directories so they are not mirrored by -v "$PWD":/project?