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
- Host: GitHub
- URL: https://github.com/stivio00/flutterbox
- Owner: stivio00
- License: mit
- Created: 2024-04-15T19:44:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T15:09:10.000Z (about 2 years ago)
- Last Synced: 2024-05-10T16:29:36.150Z (about 2 years ago)
- Topics: android, cd, ci, docker, flutter, linux
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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