From 30f613e13dce30aafa63e15db1b9711025aa6ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eligio=20Mari=C3=B1o?= <22875166+gmeligio@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:28:41 +0100 Subject: [PATCH] chore: update flutter dependencies in version.json for 3.16.8 (#148) Co-authored-by: gmeligio --- config/version.json | 4 ++-- readme.md | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/config/version.json b/config/version.json index 3f92614..83a35d9 100644 --- a/config/version.json +++ b/config/version.json @@ -1,8 +1,8 @@ { "flutter": { "channel": "stable", - "commit": "ef1af02aead6fe2414f3aafa5a61087b610e1332", - "version": "3.16.7" + "commit": "67457e669f79e9f8d13d7a68fe09775fefbb79f4", + "version": "3.16.8" }, "android": { "platforms": [ diff --git a/readme.md b/readme.md index ebf8814..22ae9fd 100644 --- a/readme.md +++ b/readme.md @@ -10,7 +10,7 @@ The images includes the minimum tools to run Flutter and build apps. The version Features: -* \[x\] Installed Flutter SDK 3.16.7 +* \[x\] Installed Flutter SDK 3.16.8 * \[x\] Analytics disabled by default, opt-in suggested in the Docker entrypoint. * \[x\] Rootless user `flutter:flutter`, with permissions to run on GitLab CI. * \[x\] Cached Fastlane gem 2.219.0 @@ -50,13 +50,13 @@ On the terminal: ```bash # From Docker Hub -docker run --rm -it gmeligio/flutter-android:3.16.7 bash +docker run --rm -it gmeligio/flutter-android:3.16.8 bash # From GitHub Container Registry -docker run --rm -it ghcr.io/gmeligio/flutter-android:3.16.7 bash +docker run --rm -it ghcr.io/gmeligio/flutter-android:3.16.8 bash # From Quay.io -docker run --rm -it quay.io/gmeligio/flutter-android:3.16.7 bash +docker run --rm -it quay.io/gmeligio/flutter-android:3.16.8 bash ``` On a workflow in GitHub Actions: @@ -66,7 +66,7 @@ jobs: build: runs-on: ubuntu-22.04 container: - image: ghcr.io/gmeligio/flutter-android:3.16.7 + image: ghcr.io/gmeligio/flutter-android:3.16.8 steps: - name: Checkout uses: actions/checkout@v2 @@ -78,7 +78,7 @@ On a `.gitlab-ci.yml` in GitLab CI: ```yaml build: - image: ghcr.io/gmeligio/flutter-android:3.16.7 + image: ghcr.io/gmeligio/flutter-android:3.16.8 script: - flutter build apk ``` @@ -100,8 +100,8 @@ There is no `latest` Docker tag on purpose. You need to specify the version of t The tag is composed of the Flutter version used to build the image. For example: -* Docker image: gmeligio/flutter-android:3.16.7 -* Flutter version: 3.16.7 +* Docker image: gmeligio/flutter-android:3.16.8 +* Flutter version: 3.16.8 ## Developing locally @@ -109,13 +109,13 @@ The tag is composed of the Flutter version used to build the image. For example: The Dockerfile expects a few parameters: -* `flutter_version `: The version of Flutter to use when building. Example: 3.16.7 +* `flutter_version `: The version of Flutter to use when building. Example: 3.16.8 * `android_build_tools_version `: The version of the Android SDK Build Tools to install. Example: 30.0.3 * `android_platform_versions `: The versions of the Android SDK Platforms to install, separated by spaces. Example: 28 31 33 ```bash # Android -docker build --target android --build-arg flutter_version=3.16.7 --build-arg fastlane_version=2.219.0 --build-arg android_build_tools_version=30.0.3 --build-arg android_platform_versions="33" -t android-test . +docker build --target android --build-arg flutter_version=3.16.8 --build-arg fastlane_version=2.219.0 --build-arg android_build_tools_version=30.0.3 --build-arg android_platform_versions="33" -t android-test . ``` ### Dockerfile stages