We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf5c18 commit 0cab665Copy full SHA for 0cab665
1 file changed
Dockerfile
@@ -25,7 +25,7 @@ WORKDIR ${FOLDER}
25
26
# Install dependencies based on the preferred package manager
27
RUN \
28
- if [ -f bun.lockb ] || [ -f bun.lock ]; then bun install --frozen-lockfile || bun install;
+ if [ -f bun.lockb ] || [ -f bun.lock ]; then bun install --frozen-lockfile || bun install; \
29
elif [ -f yarn.lock ]; then yarn install --frozen-lockfile || yarn install; \
30
elif [ -f package-lock.json ]; then npm ci || npm i; \
31
elif [ -f pnpm-lock.yaml ]; then pnpm i --frozen-lockfile || pnpm i; \
0 commit comments