From 86556e75438725f3dd136483a3c6893220012b4d Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Mon, 1 Jun 2026 15:43:32 +0200 Subject: [PATCH] fix docker file flutter --- mih_ui/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mih_ui/Dockerfile b/mih_ui/Dockerfile index febdb74e..c00cedf1 100644 --- a/mih_ui/Dockerfile +++ b/mih_ui/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # Clone Flutter SDK -RUN git clone -b stable https://github.com/flutter/flutter.git /usr/local/flutter +RUN git clone -b stable --depth 1 https://github.com/flutter/flutter.git /usr/local/flutter ENV PATH="/usr/local/flutter/bin:/usr/local/flutter/bin/cache/dart-sdk/bin:${PATH}" # Build the Flutter web app -- 2.52.0