chore: update flutter dependencies in version.json for 3.16.1 (#130)

Co-authored-by: gmeligio <gmeligio@users.noreply.github.com>
This commit is contained in:
Eligio Mariño
2023-11-28 09:17:46 +01:00
committed by GitHub
parent 73cfcf6501
commit c695310a34
2 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
{
"flutter": {
"channel": "stable",
"commit": "db7ef5bf9f59442b0e200a90587e8fa5e0c6336a",
"version": "3.16.0"
"commit": "7f20e5d18ce4cb80c621533090a7c5113f5bdc52",
"version": "3.16.1"
},
"android": {
"platforms": [
+10 -10
View File
@@ -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.0
* \[x\] Installed Flutter SDK 3.16.1
* \[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.217.0
@@ -50,13 +50,13 @@ On the terminal:
```bash
# From Docker Hub
docker run --rm -it gmeligio/flutter-android:3.16.0 bash
docker run --rm -it gmeligio/flutter-android:3.16.1 bash
# From GitHub Container Registry
docker run --rm -it ghcr.io/gmeligio/flutter-android:3.16.0 bash
docker run --rm -it ghcr.io/gmeligio/flutter-android:3.16.1 bash
# From Quay.io
docker run --rm -it quay.io/gmeligio/flutter-android:3.16.0 bash
docker run --rm -it quay.io/gmeligio/flutter-android:3.16.1 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.0
image: ghcr.io/gmeligio/flutter-android:3.16.1
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.0
image: ghcr.io/gmeligio/flutter-android:3.16.1
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.0
* Flutter version: 3.16.0
* Docker image: gmeligio/flutter-android:3.16.1
* Flutter version: 3.16.1
## 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 <string>`: The version of Flutter to use when building. Example: 3.16.0
* `flutter_version <string>`: The version of Flutter to use when building. Example: 3.16.1
* `android_build_tools_version <string>`: The version of the Android SDK Build Tools to install. Example: 30.0.3
* `android_platform_versions <list>`: 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.0 fastlane_version=2.217.0 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.1 fastlane_version=2.217.0 android_build_tools_version=30.0.3 --build-arg android_platform_versions="33" -t android-test .
```
### Dockerfile stages