12 lines
194 B
Bash
12 lines
194 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "[entrypoint] Starting Asset Bridge 3D..."
|
|
|
|
# Ensure tmp directory for uploads exists
|
|
mkdir -p /tmp/assets
|
|
|
|
echo "[entrypoint] Ready. Launching application..."
|
|
|
|
exec "$@"
|