An open API service indexing awesome lists of open source software.

https://github.com/stivio00/flutterbox

Docker container for build ,test and deploy Flutter Apps
https://github.com/stivio00/flutterbox

android cd ci docker flutter linux

Last synced: 5 months ago
JSON representation

Docker container for build ,test and deploy Flutter Apps

Awesome Lists containing this project

README

          

# Flutter dev box

A simple Docker container used for building and testing flutter apps under linux.
It is able to build for linux and android

## Build
```bash
$ docker build -t flutter_dev_builder .
```

## Using the Lontainer Locally
```bash
$ docker run --rm -it flutter_dev_builder bash
```

## Usage
Inside the container you can build your flutter app.

To restore dependencies
```bash
$ flutter pub get
```

To build a release apk use
```bash
$ flutter build apk --release
```

To release a debug apk use
```bash
$ flutter build apk --debug
```

# Specs
* Build Time: 6 min (fast env)
* Total image Size: 4.13 GB