5 lines
113 B
Bash
5 lines
113 B
Bash
#!/bin/sh
|
|
set -e
|
|
echo "[entrypoint] Starting neuron-web on port ${PORT:-8080}..."
|
|
exec /usr/local/bin/neuron-web
|