Sign inSign up

avetkhov/flutter

By avetkhov

Updated over 3 years ago

A docker image includes Android SDK, Flutter SDK, Fastlane Tools.

Image
0

2.1K

avetkhov/flutter repository overview

Flutter Docker

build Docker Image Version (latest semver) Docker Image Size (latest semver) Docker Pulls Docker Stars

Based on avetkhov/android-sdk:tools.

Supported toolchains

  • iOS
  • Android
  • Linux
  • Web

What is Flutter?

Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Flutter works with existing code, is used by developers and organizations around the world, and is free and open source.

flutter.dev

Flutter Logo

How to use this image

docker run -t --rm avetkhov/flutter flutter doctor

Alternatively, a simple Dockerfile can be used to generate a new image that includes the necessary package dependencies:

FROM avetkhov/flutter

COPY pubspec.yaml .

RUN flutter pub get \
    && rm pubspec.*

Place this file in the flutter project directory, run docker build -t my-app-flutter ., then start your container:

docker run --name my-app -d my-app-flutter

License

Flutter is licensed under BSD 3-Clause "New" or "Revised" license.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Tag summary

Content type

Image

Digest

sha256:a4fbb220e

Size

4 GB

Last updated

over 3 years ago

docker pull avetkhov/flutter