Skip to content

Commit 030bd3c

Browse files
committed
fix: update yarn installation command to remove frozen-lockfile option
1 parent 21e2dde commit 030bd3c

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
@@ -10,7 +10,7 @@ WORKDIR /app
1010
# Install dependencies based on the preferred package manager
1111
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* .npmrc* ./
1212
RUN \
13-
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
13+
if [ -f yarn.lock ]; then yarn; \
1414
elif [ -f package-lock.json ]; then npm ci; \
1515
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \
1616
else echo "Lockfile not found." && exit 1; \

0 commit comments

Comments
 (0)