File size: 266 Bytes
927edae
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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
}