diff --git a/.gitignore b/.gitignore index 8d1d609..ecabf70 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /.env /test_app -/.vscode \ No newline at end of file +/.vscode +/.claude diff --git a/android.Dockerfile b/android.Dockerfile index b23f080..005adf6 100644 --- a/android.Dockerfile +++ b/android.Dockerfile @@ -152,7 +152,7 @@ ENV PATH="$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/platform-to # renovate: suite=bookworm depName=openjdk-17-jdk-headless ARG OPENJDK_17_JDK_HEADLESS_VERSION="17.0.18+8-1~deb12u1" # renovate: suite=trixie depName=sudo -ARG SUDO_VERSION="1.9.16p2-3" +ARG SUDO_VERSION="1.9.16p2-3+deb13u1" USER root # Add debian 12 bookworm repository alongside debian 13 trixie to install Java 17 diff --git a/config/flutter_version.json b/config/flutter_version.json index e2203a3..ee81401 100644 --- a/config/flutter_version.json +++ b/config/flutter_version.json @@ -1,7 +1,7 @@ { "flutter": { "channel": "stable", - "commit": "90673a4eef275d1a6692c26ac80d6d746d41a73a", - "version": "3.41.2" + "commit": "ff37bef603469fb030f2b72995ab929ccfc227f0", + "version": "3.41.4" } } diff --git a/config/version.json b/config/version.json index 57189d4..1d64432 100644 --- a/config/version.json +++ b/config/version.json @@ -1,8 +1,8 @@ { "flutter": { "channel": "stable", - "commit": "90673a4eef275d1a6692c26ac80d6d746d41a73a", - "version": "3.41.2" + "commit": "ff37bef603469fb030f2b72995ab929ccfc227f0", + "version": "3.41.4" }, "android": { "platforms": [ @@ -27,6 +27,6 @@ } }, "fastlane": { - "version": "2.232.1" + "version": "2.232.2" } } diff --git a/readme.md b/readme.md index c511152..42dc17b 100644 --- a/readme.md +++ b/readme.md @@ -23,10 +23,10 @@ The images includes the minimum tools to run Flutter and build apps. The version ## Features -* Installed Flutter SDK 3.41.2. +* Installed Flutter SDK 3.41.4. * Analytics disabled by default, opt-in if `ENABLE_ANALYTICS` environment variable is passed when running the container. * Rootless user `flutter:flutter`, with permissions to run on Github workflows and GitLab CI. -* Cached Fastlane gem 2.232.1. +* Cached Fastlane gem 2.232.2. * Minimal image with predownloaded SDKs and tools ready to run `flutter` commands for the Android platform. Predownloaded SDKs and tools in Android: @@ -40,15 +40,15 @@ Predownloaded SDKs and tools in Android: | Registry | flutter-android | | ------------------------- | -------------------------------------------------------------------------------------------------------------------------- | -| Docker Hub | [gmeligio/flutter-android:3.41.2](https://hub.docker.com/r/gmeligio/flutter-android) | -| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.41.2](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) | -| Quay | [quay.io/gmeligio/flutter-android:3.41.2](https://quay.io/repository/gmeligio/flutter-android) | +| Docker Hub | [gmeligio/flutter-android:3.41.4](https://hub.docker.com/r/gmeligio/flutter-android) | +| GitHub Container Registry | [ghcr.io/gmeligio/flutter-android:3.41.4](https://github.com/gmeligio/flutter-docker-image/pkgs/container/flutter-android) | +| Quay | [quay.io/gmeligio/flutter-android:3.41.4](https://quay.io/repository/gmeligio/flutter-android) | On the terminal: ```bash # From GitHub Container Registry -docker run --rm -it ghcr.io/gmeligio/flutter-android:3.41.2 bash +docker run --rm -it ghcr.io/gmeligio/flutter-android:3.41.4 bash ``` On a workflow in GitHub Actions: @@ -58,7 +58,7 @@ jobs: build: runs-on: ubuntu-22.04 container: - image: ghcr.io/gmeligio/flutter-android:3.41.2 + image: ghcr.io/gmeligio/flutter-android:3.41.4 steps: - name: Checkout uses: actions/checkout@v2 @@ -70,7 +70,7 @@ On a `.gitlab-ci.yml` in GitLab CI: ```yaml build: - image: ghcr.io/gmeligio/flutter-android:3.41.2 + image: ghcr.io/gmeligio/flutter-android:3.41.4 script: - flutter build apk ``` @@ -91,20 +91,20 @@ bundle exec fastlane Every new tag on the flutter stable channel gets built. The tag is composed of the Flutter version used to build the image: -* Docker image: gmeligio/flutter-android:3.41.2 -* Flutter version: 3.41.2 +* Docker image: gmeligio/flutter-android:3.41.4 +* Flutter version: 3.41.4 ## Building Locally The android.Dockerfile expects a few arguments: -* `flutter_version `: The version of Flutter to use when building. Example: 3.41.2 +* `flutter_version `: The version of Flutter to use when building. Example: 3.41.4 * `android_build_tools_version `: The version of the Android SDK Build Tools to install. Example: 35.0.0 * `android_platform_versions `: The versions of the Android SDK Platforms to install, separated by spaces. Example: 36 ```bash # Android -docker build --target android --build-arg flutter_version=3.41.2 --build-arg fastlane_version=2.232.1 --build-arg android_build_tools_version=35.0.0 --build-arg android_platform_versions="36" -t android-test . +docker build --target android --build-arg flutter_version=3.41.4 --build-arg fastlane_version=2.232.2 --build-arg android_build_tools_version=35.0.0 --build-arg android_platform_versions="36" -t android-test . ``` ## Roadmap