From 67aac145a1a423e98686a7aa1632020f8558eb6b Mon Sep 17 00:00:00 2001 From: Andri Joos <andri@joos.io> Date: Wed, 4 Dec 2024 01:07:16 +0100 Subject: [PATCH] fixup! add multi platform image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f661f8f..f6458bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN if [ "$(uname -m)" = "x86_64" ]; then \ # Flutter on arch currently has warnings because channel and repository source are not set RUN if [ "$(uname -m)" = "aarch64" ]; then \ - git clone https://github.com/flutter/flutter.git ${FLUTTER_DIR} \ + git clone --depth 1 https://github.com/flutter/flutter.git ${FLUTTER_DIR} \ && cd ${FLUTTER_DIR} \ && git fetch origin tag ${FLUTTER_VERSION} \ && git checkout tags/${FLUTTER_VERSION} \ -- GitLab