experiment with entrypoint for backwards compat

This commit is contained in:
Ben Phelps 2022-09-14 19:04:19 +03:00
parent 5a284bff26
commit d4b05b2612
2 changed files with 12 additions and 2 deletions

9
docker-entrypoint.sh Executable file
View file

@ -0,0 +1,9 @@
#!/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
node server.js