fix: entrypoint now logs dist contents instead of clearing

This commit is contained in:
2026-05-13 14:58:28 +02:00
parent 00fb8b3b2f
commit 7dfae428e5

View File

@@ -1,9 +1,7 @@
#!/bin/sh
set -e
echo "[$(date -Iseconds)] Clearing dist/ directory..."
rm -rf /app/dist/*
echo "[$(date -Iseconds)] dist/ cleared"
echo "[$(date -Iseconds)] Checking dist directory contents:"
ls -la /app/dist/
echo "[$(date -Iseconds)] Starting server..."
exec /app/main_server