diff --git a/docker-entrypoint b/docker-entrypoint new file mode 100644 index 0000000..a97729d --- /dev/null +++ b/docker-entrypoint @@ -0,0 +1,12 @@ +#!/bin/bash + +# Exit build script on first failure. +set -e + +# Exit on unset variable. +set -u + +set -x + +node db.js +npm start