├── LICENSE ├── README.md ├── beta └── Dockerfile ├── chown.sh ├── dev └── Dockerfile ├── entrypoint.sh ├── flutter-android-emulator.sh ├── flutter-web.sh └── stable └── Dockerfile /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/README.md -------------------------------------------------------------------------------- /beta/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/beta/Dockerfile -------------------------------------------------------------------------------- /chown.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | chown $UID:$GID -R $(pwd) 4 | 5 | exit 6 | -------------------------------------------------------------------------------- /dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/dev/Dockerfile -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /flutter-android-emulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/flutter-android-emulator.sh -------------------------------------------------------------------------------- /flutter-web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/flutter-web.sh -------------------------------------------------------------------------------- /stable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsp/docker-flutter/HEAD/stable/Dockerfile --------------------------------------------------------------------------------