updates and test cross platform docker install

This commit is contained in:
Zheyuan Wu
2025-10-20 11:52:44 -05:00
parent 1e02b10c09
commit fbda70e849
2 changed files with 164 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ RUN \
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
elif [ -f package-lock.json ]; then npm ci; \
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i; \
else echo "Lockfile not found." && exit 1; \
else echo "Lockfile not found, use default npm install" && npm i; \
fi