pdf / build_test.sh
fokan's picture
Upload 38 files
927edae verified
raw
history blame contribute delete
240 Bytes
#!/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