From 6b8da4b6c5d26a80ca8416903c07cee1b83e5f38 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Fri, 5 Apr 2024 19:42:07 -0700 Subject: [PATCH] update to flutter 3.19.3 --- README.md | 4 +++- linux/Dockerfile | 4 ++-- windows/Dockerfile | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5f734e0..cf65c7f 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,11 @@ Dockerfiles @ [git.openprivacy.ca/openprivacy/flutter-desktop](https://git.openp These docker containers incorporate or are build on [cirrusci](https://hub.docker.com/u/cirrusci) ([cirruslabs](https://github.com/cirruslabs)). +- linux-fstable-3.13.4 is flutter 3.19.3, glibc 2.31, apt installing the needed utils including npm, cucumber-html-reporter +- windows-sdk30-fstable-3.19.3 is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter stable (3.13.4), and Google Root cert gtsr1 (for future proofing pub get) + - linux-fstable-3.13.4 is flutter 3.13.4, glibc 2.31, apt installing the needed utils including npm, cucumber-html-reporter - windows-sdk30-fstable-3.13.4 is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter stable (3.13.4), and Google Root cert gtsr1 (for future proofing pub get) - - linux-fstable-3.10.2 is flutter 3.10.2, glibc 2.31, apt installing the needed utils including npm, cucumber-html-reporter - windows-sdk30-fstable-3.10.2 is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter stable (3.10.2), and Google Root cert gtsr1 (for future proofing pub get) - linux-fstable-3.7.1 is flutter 3.7.1, glibc 2.31, apt installing the needed utils including npm, cucumber-html-reporter diff --git a/linux/Dockerfile b/linux/Dockerfile index 79cb5cc..d156dfd 100644 --- a/linux/Dockerfile +++ b/linux/Dockerfile @@ -18,7 +18,7 @@ RUN set -o xtrace \ && cd /opt \ && apt-get update \ && apt-get install -y openjdk-11-jdk \ - && apt-get install -y sudo wget zip unzip git openssh-client curl bc software-properties-common build-essential ruby-full ruby-bundler libstdc++6 libpulse0 libglu1-mesa locales lcov libsqlite3-0 --no-install-recommends \ + && apt-get install -y sudo wget zip unzip git openssh-client curl bc software-properties-common build-essential ruby-full ruby-bundler libstdc++6 libpulse0 libglu1-mesa locales lcov libsqlite3-0 jq ca-certificates --no-install-recommends \ # for x86 emulators && apt-get install -y libxtst6 libnss3-dev libnspr4 libxss1 libasound2 libatk-bridge2.0-0 libgtk-3-0 libgdk-pixbuf2.0-0 \ && rm -rf /var/lib/apt/lists/* \ @@ -49,7 +49,7 @@ RUN if [[ $(uname -m) == "x86_64" ]] ; then sdkmanager emulator ; fi # USER root ENV FLUTTER_HOME=${HOME}/sdks/flutter \ - FLUTTER_VERSION=3.13.4 + FLUTTER_VERSION=3.19.3 ENV FLUTTER_ROOT=$FLUTTER_HOME ENV PATH ${PATH}:${FLUTTER_HOME}/bin:${FLUTTER_HOME}/bin/cache/dart-sdk/bin diff --git a/windows/Dockerfile b/windows/Dockerfile index c267757..105fe63 100644 --- a/windows/Dockerfile +++ b/windows/Dockerfile @@ -34,7 +34,7 @@ RUN powershell.exe -Command \ RUN setx path "%path%;C:\flutter\bin;C:\flutter\bin\cache\dart-sdk\bin;" -RUN git clone -b 3.13.4 https://github.com/flutter/flutter.git C:\flutter +RUN git clone -b 3.19.3 https://github.com/flutter/flutter.git C:\flutter RUN flutter config --no-analytics