From 4f23321def03988671e36c81de4c4daeb4481381 Mon Sep 17 00:00:00 2001 From: Maxim Date: Thu, 11 Apr 2019 10:32:03 +0200 Subject: [PATCH] adds missing entrypoint.sh --- entrypoint.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 entrypoint.sh diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 00000000..07e27e70 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +# migrate db +bin/migrate + +# Hand off to the CMD +exec "$@"