Skip to content
This repository has been archived by the owner on Oct 13, 2019. It is now read-only.

CanKattwinkel/flutter-android-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Flutter Android Docker (API 28)

Based on javiersantos/android-ci:28.0.3.

Building and running

docker build -t flutter-android .
docker run -it --entrypoint=/bin/bash flutter-android

Use in Gitlab

This image can be used to test and build Android APKs developed with Flutter. Here is an example .gitlab-ci.yml:

test app:
  image: kattwinkel/flutter-android
  stage: test
  script:
  - cd app
  - flutter test

build app:
  image: kattwinkel/flutter-android
  stage: build
  script:
    - cd app
    - flutter build apk
  artifacts:
    expire_in: 1 week
    paths:
    - app/build/app/outputs/apk/release/app-release.apk

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published