927edae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash # Simple build test script echo "Testing Docker build locally..." # Build the Docker image docker build -t docx-to-pdf-converter . if [ $? -eq 0 ]; then echo "Build successful!" else echo "Build failed!" exit 1 fi