Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.24 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.24 KB

flocker

Build Flutter apps painlessly with this Docker image, having the Android SDK and Flutter pre-installed.

GitHub Workflow Status Docker Pulls

Usage

To use this image, you must have Docker installed. If already, run the below command in your Flutter project folder:

$ docker run -it --rm -v $PWD:/workspace syncloudsoftech/flocker flutter build web

You can build either for web or apk / appbundle easily and pass any options e.g., --debug as below:

$ docker run -it --rm -v $PWD:/workspace syncloudsoftech/flocker flutter build apk --debug

Development

Building or modifying the container yourself from source is also quite easy. Just clone the repository and run below command:

$ docker build -t flocker .

Run the locally built container as follows:

$ docker run -it --rm -v $PWD:/workspace flocker flutter build web

License

See the LICENSE file.