Rafael
Rafael
you can use dart-define, example: flutter build web --dart-define FLAVOR="you-flavor" inside the app: const flavor =String.fromEnvironment('FLAVOR', defaultValue: 'you-flavor');
v:0.14.2.305 also has this error: An internal curl error has occurred within the executor! Error Msg: Could not resolve host: ....
I managed to reproduce. after changing one of the variables the function fails and it is necessary to deploy. The function was triggered by collections.name-collection.documents.*.create @stnguyen90
> @rafagazani, are you saying the container crashes after changing the variable and the function gets triggered? And you see the "Error Msg: Could not resolve host:" error? yes
@npneeraj I think we should wait for someone to make the respond (@stnguyen90)
Need this feature too
Try : RUN apt-get update & apt-get install -y gcc-multilib libgcc1
# Dockerfile: FROM dart:3.2.0-sdk AS build RUN apt-get update && apt-get install -y \ gcc-multilib \ libgcc1 WORKDIR /app COPY pubspec.* ./ RUN dart pub get COPY . . RUN...
The scratch image does not have the minimum requirements to run ISAR
One bad point is that ISAR may not work in all scenarios. For example, it worked on my local wsl, but when I took it to azure, it didn't work....