Closed passsy closed 1 year ago
Usage:
await createDockerImage( //... buildArgs: ['--build-arg', 'SHIELD_PASSWORD=$password'], );
This can then be used inside the docker file:
FROM dart:stable AS build ARG SHIELD_PASSWORD RUN dart compile exe \ --define=SHIELD_PASSWORD=$SHIELD_PASSWORD \ -o bin/server \ bin/server.dart
Can you add this to the docs please :)
Usage:
This can then be used inside the docker file: