Skip to content

Commit 0cab665

Browse files
committed
Fix typo
1 parent 7bf5c18 commit 0cab665

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ WORKDIR ${FOLDER}
2525

2626
# Install dependencies based on the preferred package manager
2727
RUN \
28-
if [ -f bun.lockb ] || [ -f bun.lock ]; then bun install --frozen-lockfile || bun install;
28+
if [ -f bun.lockb ] || [ -f bun.lock ]; then bun install --frozen-lockfile || bun install; \
2929
elif [ -f yarn.lock ]; then yarn install --frozen-lockfile || yarn install; \
3030
elif [ -f package-lock.json ]; then npm ci || npm i; \
3131
elif [ -f pnpm-lock.yaml ]; then pnpm i --frozen-lockfile || pnpm i; \

0 commit comments

Comments
 (0)