chore(docker): add root Dockerfile pinning ubi8/openjdk-21:1.21 + UID 1001 for lionsctl pipeline
Some checks failed
CI/CD Pipeline / pipeline (push) Failing after 4m2s

This commit is contained in:
2026-04-24 16:19:25 +00:00
parent fb3a32817b
commit a72ab54abd
461 changed files with 51042 additions and 73486 deletions

View File

@@ -1,9 +1,9 @@
# Arrête les processus Java démarrés par quarkus:dev (libère target)
$procs = Get-CimInstance Win32_Process -Filter "name = 'java.exe'" |
Where-Object { $_.CommandLine -and ($_.CommandLine -like '*unionflow*' -or $_.CommandLine -like '*quarkus*') }
foreach ($p in $procs) {
Write-Host "Arret PID $($p.ProcessId): $($p.CommandLine.Substring(0, [Math]::Min(80, $p.CommandLine.Length)))..."
Stop-Process -Id $p.ProcessId -Force -ErrorAction SilentlyContinue
}
if (-not $procs) { Write-Host "Aucun processus Java unionflow/quarkus en cours." }
Write-Host "Termine."
# Arrête les processus Java démarrés par quarkus:dev (libère target)
$procs = Get-CimInstance Win32_Process -Filter "name = 'java.exe'" |
Where-Object { $_.CommandLine -and ($_.CommandLine -like '*unionflow*' -or $_.CommandLine -like '*quarkus*') }
foreach ($p in $procs) {
Write-Host "Arret PID $($p.ProcessId): $($p.CommandLine.Substring(0, [Math]::Min(80, $p.CommandLine.Length)))..."
Stop-Process -Id $p.ProcessId -Force -ErrorAction SilentlyContinue
}
if (-not $procs) { Write-Host "Aucun processus Java unionflow/quarkus en cours." }
Write-Host "Termine."