#!/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