private static async buildImageFromDockerfile()

in azurecontainerapps.ts [531:541]


    private static async buildImageFromDockerfile(
        appSourcePath: string,
        dockerfilePath: string,
        imageToBuild: string,
        buildArguments: string[]) {
        this.toolHelper.writeInfo(`Building image "${imageToBuild}" using the provided Dockerfile`);
        await this.appHelper.createRunnableAppImageFromDockerfile(imageToBuild, appSourcePath, dockerfilePath, buildArguments);

        // If telemetry is enabled, log that the Dockerfile scenario was targeted for this task
        this.telemetryHelper.setDockerfileScenario();
    }