From 78b22bea7adba880d9d0451a92e0c076ea7be66e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 16 Feb 2021 17:01:47 +0100 Subject: [PATCH] Install extensions at the end --- entrypoint.sh.tmpl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/entrypoint.sh.tmpl b/entrypoint.sh.tmpl index a81d53a..5461162 100755 --- a/entrypoint.sh.tmpl +++ b/entrypoint.sh.tmpl @@ -78,12 +78,10 @@ install_extensions() { main() { set -eu - install_extensions - init_db - init_composer composer_install + install_extensions } main