https://github.com/geekswamp/docker-flutter
Docker images for Flutter
https://github.com/geekswamp/docker-flutter
docker docker-images flutter
Last synced: about 1 month ago
JSON representation
Docker images for Flutter
- Host: GitHub
- URL: https://github.com/geekswamp/docker-flutter
- Owner: geekswamp
- License: mit
- Created: 2023-09-25T14:13:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-07T02:58:56.000Z (10 months ago)
- Last Synced: 2025-10-24T17:52:05.912Z (about 1 month ago)
- Topics: docker, docker-images, flutter
- Language: Dockerfile
- Homepage:
- Size: 36.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/geekswamp/docker-flutter/actions/workflows/publish.yaml)
# Docker Flutter
You can run it using CI or locally via Docker.
# Usage
## Dockerfile
Use as base image in `Dockerfile`
```Dockerfile
FROM ghcr.io/geekswamp/flutter:stable
```
## GitLab CI
Use as base image in `.gitlab-ci.yml`
```yml
image: ghcr.io/geekswamp/flutter:stable
stages:
- build
build:
stage: build
...
```