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 #!/bin/sh
set -e set -e
echo "[$(date -Iseconds)] Clearing dist/ directory..." echo "[$(date -Iseconds)] Checking dist directory contents:"
rm -rf /app/dist/* ls -la /app/dist/
echo "[$(date -Iseconds)] dist/ cleared"
echo "[$(date -Iseconds)] Starting server..." echo "[$(date -Iseconds)] Starting server..."
exec /app/main_server exec /app/main_server