Add Datum und anpassung der positzionierung

This commit is contained in:
2026-01-16 14:30:41 +00:00
parent ba767a374a
commit 48ac8e97bc
7 changed files with 82 additions and 138 deletions

16
build.sh Executable file
View 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