fixes
Build And Push Image / docker (push) Successful in 3m1s Details

This commit is contained in:
Matt 2025-08-09 17:43:15 +02:00
parent df1ff15975
commit c13ef30f69
1 changed files with 3 additions and 1 deletions

View File

@ -154,7 +154,9 @@ export class EmailService {
join(process.cwd(), 'server/templates', `${templateName}.hbs`),
join(process.cwd(), '.output/server/templates', `${templateName}.hbs`),
join(__dirname, '..', 'templates', `${templateName}.hbs`),
join(__dirname, '..', '..', 'server/templates', `${templateName}.hbs`)
join(__dirname, '..', '..', 'server/templates', `${templateName}.hbs`),
// Docker container path
`/app/server/templates/${templateName}.hbs`
];
let templateContent: string | null = null;