From 9c073d3083ada716e7e0ac2e4c4169ce4e9ff45f Mon Sep 17 00:00:00 2001
From: Dominik Hebeler <dominik@suma-ev.de>
Date: Thu, 30 Nov 2023 10:08:13 +0100
Subject: [PATCH] fixed initial local deployment after checkout

---
 app/composer.json       | 5 ++++-
 build/fpm/entrypoint.sh | 2 --
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/app/composer.json b/app/composer.json
index 38a297a..a8aa416 100644
--- a/app/composer.json
+++ b/app/composer.json
@@ -53,7 +53,10 @@
     "config": {
         "preferred-install": "dist",
         "sort-packages": true,
-        "optimize-autoloader": true
+        "optimize-autoloader": true,
+        "allow-plugins": {
+            "kylekatarnls/update-helper": true
+        }
     },
     "minimum-stability": "dev",
     "prefer-stable": true
diff --git a/build/fpm/entrypoint.sh b/build/fpm/entrypoint.sh
index 18e05c5..2f70c5c 100644
--- a/build/fpm/entrypoint.sh
+++ b/build/fpm/entrypoint.sh
@@ -7,8 +7,6 @@ _term() {
 
 trap _term SIGTERM
 
-cd ~
-
 if [ ! -f .env ]
 then
   pwd
-- 
GitLab