Go to file
Mathias Beaulieu-Duncan 5d5634c4a1 Add Android SDK version badge
Links to Android build-tools release notes page.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 03:41:43 -05:00
.gitea/workflows Update Android SDK to latest versions and add version check workflow 2026-02-03 00:47:15 -05:00
.gitignore Initial minimal Flutter SDK image for web/WASM CI builds 2026-02-02 00:39:04 -05:00
Dockerfile Use git clone for Flutter SDK to support arm64 2026-02-03 02:06:52 -05:00
Dockerfile.android Upgrade commons-lang3 to fix CVE-2025-48924 2026-02-03 02:45:13 -05:00
Dockerfile.linux Remove rav1e to eliminate paste crate CVE in Linux image 2026-02-03 03:01:29 -05:00
PLAN.md Add plan for custom minimal Flutter SDK distribution using apko/melange 2026-02-02 01:14:31 -05:00
README.md Add Android SDK version badge 2026-02-03 03:41:43 -05:00

Flutter SDK Docker Images

Docker Hub Git Repository Docker Pulls Docker Version Android SDK Wolfi

Lightweight Flutter SDK images for CI/CD pipelines. Built on Wolfi, a security-focused Linux distribution designed for containers.

Images

Variant Use Case Size Arch
web-latest Web/WASM builds size amd64 arm64
android-latest Android APK/AAB builds size amd64 arm64
linux-latest Linux desktop builds size amd64 arm64

Why Wolfi?

Wolfi is a lightweight Linux distribution built specifically for containers. It provides:

  • Minimal footprint - Only essential packages, nothing extra
  • Daily security updates - Patches applied quickly
  • Designed for containers - No legacy cruft from traditional distros

Features

  • Lightweight - Optimized for fast CI/CD pulls
  • Secure - Built on Wolfi with continuous vulnerability scanning
  • Multi-arch - Supports both linux/amd64 and linux/arm64
  • Non-root - Runs as unprivileged user (UID 65532)
  • Supply chain security - SBOM and SLSA provenance attestations included

Usage

Web

docker run --rm -v $(pwd):/app -w /app svrnty/flutter-sdk:web-latest \
  flutter build web

Android

docker run --rm -v $(pwd):/app -w /app svrnty/flutter-sdk:android-latest \
  flutter build apk

Linux Desktop

docker run --rm -v $(pwd):/app -w /app svrnty/flutter-sdk:linux-latest \
  flutter build linux

CI/CD Examples

GitHub Actions

jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: svrnty/flutter-sdk:android-latest
    steps:
      - uses: actions/checkout@v4
      - run: flutter build apk --release

GitLab CI

build:
  image: svrnty/flutter-sdk:android-latest
  script:
    - flutter build apk --release

Gitea Actions

jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: svrnty/flutter-sdk:android-latest
    steps:
      - uses: actions/checkout@v3
      - run: flutter build apk --release

Tags

  • <variant>-latest - Latest stable Flutter release
  • <variant>-<version> - Specific Flutter version (e.g., android-3.38.9)
  • <variant>-dev - Pre-release testing

Automatic Updates

Images are automatically rebuilt when:

  • New Flutter stable versions are released
  • Base image security updates are available

Every build is scanned and includes supply chain attestations (SBOM, SLSA provenance).

License

MIT