fix: lancement de la commande npm run build, source directe pour l'image du runner

This commit is contained in:
ineszang44
2026-09-21 10:40:14 +02:00
parent 99db807e3c
commit 93afc6031c
4 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ resource "null_resource" "build_frontend" {
}
provisioner "local-exec" {
command = "cd ${local.frontend_dir} && npm ci && npm run build"
command = "cd ${local.frontend_dir} && npm ci && chmod -R +x node_modules/@angular/cli/bin && chmod -R +x node_modules/.bin && npm exec ng build"
}
}