Based on avetkhov/android-sdk:tools
.
iOS
Android
Linux
Web
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.
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
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.