| # Simple build test script for Windows | |
| Write-Host "Testing Docker build locally..." | |
| # Build the Docker image | |
| docker build -t docx-to-pdf-converter . | |
| if ($LASTEXITCODE -eq 0) { | |
| Write-Host "Build successful!" | |
| } else { | |
| Write-Host "Build failed!" | |
| exit 1 | |
| } |