From 5221a24aea4c7c969f2bf0a27aac947d48484b9f Mon Sep 17 00:00:00 2001 From: Rene Cordier Date: Thu, 17 Mar 2022 15:12:22 +0700 Subject: [PATCH] Add --profile option to web build for debug purposes --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 446c23e14..12def7a99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN cd core \ && cd .. \ && flutter pub get && flutter pub run intl_generator:extract_to_arb --output-dir=./lib/l10n lib/main/localizations/app_localizations.dart \ && flutter pub get && flutter pub run intl_generator:generate_from_arb --output-dir=lib/l10n --no-use-deferred-loading lib/main/localizations/app_localizations.dart lib/l10n/intl*.arb \ - && flutter build web + && flutter build web --profile # Stage 2 - Create the run-time image FROM nginx:stable