* ci: Remove debian and rhel7 images * include libc6-compat in all alpine images * run all n8n docker containers as the user `node` instead of `root` * upgrade the default version of npm bundled in all containers * consolidate docker entrypoints
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$#" -gt 0 ]; then
|
|
# Got started with arguments
|
|
node "$@"
|
|
else
|
|
# Got started without arguments
|
|
n8n
|
|
fi
|