#!/bin/sh set -e # Ensure logs directory exists with correct permissions if [ ! -d "/app/logs" ]; then mkdir -p /app/logs fi # Start the application exec node src/app.js