From 6c9fae7936b5184f88b5de7db77fedad649a3ebd Mon Sep 17 00:00:00 2001 From: DatDang Date: Thu, 31 Jul 2025 14:51:42 +0700 Subject: [PATCH] HOTFIX Update flutter docker image for 3.27.4 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f16238395..074f74c77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ ARG FLUTTER_VERSION=3.27.4 # Stage 1 - Install dependencies and build the app # This matches the flutter version on our CI/CD pipeline on Github -FROM --platform=amd64 ghcr.io/cirruslabs/flutter:${FLUTTER_VERSION} AS build-env +# FROM --platform=amd64 ghcr.io/cirruslabs/flutter:${FLUTTER_VERSION} AS build-env +FROM --platform=amd64 ghcr.io/instrumentisto/flutter:${FLUTTER_VERSION} AS build-env +# TODO: Revert back to cirruslabs when upgrade Flutter pass 3.27.4, as this tag is missing for cirruslabs # Set directory to Copy App WORKDIR /app