2022-09-14 19:04:19 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# This is in attempt to preserve the original behavior of the Dockerfile,
|
|
|
|
# while also supporting the lscr.io /config directory
|
|
|
|
[ ! -d "/app/config" ] && ln -s /config /app/config
|
|
|
|
|
2023-01-19 19:09:00 -08:00
|
|
|
node server.js
|