This commit is contained in:
2026-07-01 16:52:26 +05:00
parent 90fb42251c
commit 2f85d0dd51

View File

@@ -6,7 +6,9 @@ if [ -d /app/.git ]; then
git pull
else
cd /app
git clone "$GIT_REPO_URL" .
git clone "$GIT_REPO_URL" /tmp/app-tmp
cp -a . /app/
rm -rf /tmp/app-tmp
fi
npm i
exec "$@"