diff --git a/.github/tools/README.md b/.github/tools/README.md new file mode 100644 index 000000000..5d0c9ef8c --- /dev/null +++ b/.github/tools/README.md @@ -0,0 +1,5 @@ +# Tools + +`.github/tools/containerAppJobVerifier.sh` is used to verify the status of a container application job. It checks if the job has completed successfully or not. + +`.github/tools/revisionVerifier.sh` is used to verify the revision of the deployed container app. It ensures that the current revision has been deployed successfully. \ No newline at end of file diff --git a/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile b/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile index 58a40aa7b..aa1246915 100644 --- a/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile +++ b/src/Digdir.Domain.Dialogporten.Infrastructure/MigrationBundle.dockerfile @@ -26,4 +26,4 @@ ENV Infrastructure__DialogDbConnectionString="" WORKDIR /app USER $APP_UID COPY --from=build /app/publish . -ENTRYPOINT ./efbundle -v --connection "${Infrastructure__DialogDbConnectionString}" +ENTRYPOINT echo $Infrastructure__DialogDbConnectionString && ./efbundle -v --connection "${Infrastructure__DialogDbConnectionString}" \ No newline at end of file