From 4a23770dd108fa8f44f67aebcfa10bdaf8b17da5 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Fri, 1 May 2026 22:40:05 +0200 Subject: [PATCH] Fix image build Signed-off-by: Nikolai Rodionov --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 1f0eb48..3145623 100644 --- a/Containerfile +++ b/Containerfile @@ -14,7 +14,8 @@ ENV PATH="$FLUTTER_SDK/bin:$FLUTTER_SDK/bin/cache/dart-sdk/bin:${PATH}" WORKDIR $APP COPY . $APP - +RUN git config --global --add safe.directory /usr/local/flutter +RUN flutter pub get RUN flutter build web --release # once heare the app will be compiled and ready to deploy