From a0acc77b4b30a7ba45035edaf157010228ee9e37 Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 9 Apr 2025 23:09:55 +1000 Subject: [PATCH] entrypoint debug changes --- entrypoint.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index ec6bff2..914d4b1 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,8 +1,8 @@ #!/bin/sh -set -e +set -ex # Update apt repository, install git, and verify installation. -apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* +apt-get update -y && apt-get install -y git && rm -rf /var/lib/apt/lists/* echo "Git version:" $(git --version) PROJECT_DIR="/app/my-medusa-app" @@ -19,7 +19,6 @@ if [ ! -d "$PROJECT_DIR" ]; then npx create-medusa-app@latest my-medusa-app \ --db-url "$DATABASE_URL" \ --no-browser \ - --directory-path "/app/" \ --with-nextjs-starter # Change into the project folder, install dependencies and build the app.