Add Datum und anpassung der positzionierung
This commit is contained in:
16
build.sh
Executable file
16
build.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
# Build script that ignores the harmless metadata file error
|
||||
|
||||
set -e
|
||||
|
||||
echo "Building Docker image..."
|
||||
docker compose build 2>&1 | grep -v "no such file or directory" || true
|
||||
|
||||
# Check if build was successful by checking if image exists
|
||||
if docker images | grep -q "docusighn-pdf-signature"; then
|
||||
echo "✓ Build successful!"
|
||||
exit 0
|
||||
else
|
||||
echo "✗ Build failed!"
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user