Skip to content

Commit 93256df

Browse files
committed
yarn workspaces focus doesn't support --immutable flag
1 parent 9d0a19d commit 93256df

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ runs:
9797
- name: yarn install production
9898
if: inputs.install && inputs.type == 'production'
9999
shell: bash
100-
run: YARN_ENABLE_HARDENED_MODE=${{ inputs.HARDENED_MODE }} yarn workspaces focus --all --production --immutable
100+
run: YARN_ENABLE_HARDENED_MODE=${{ inputs.HARDENED_MODE }} yarn workspaces focus --all --production
101101

102102
- name: restore yarn config file
103103
if: inputs.install

apps/meteor/ee/server/services/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ RUN apk update && \
7676
# Update OpenSSL
7777
# CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
7878
apk upgrade --no-cache openssl && \
79-
yarn workspaces focus --production --immutable && \
79+
yarn workspaces focus --production && \
8080
rm -rf /var/cache/apk/* && \
8181
apk del build-dependencies
8282

ee/apps/account-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ENV NODE_ENV=production
8686

8787
WORKDIR /app/ee/apps/${SERVICE}
8888

89-
RUN yarn workspaces focus --production --immutable
89+
RUN yarn workspaces focus --production
9090

9191
FROM node:22.16.0-alpine3.22
9292

ee/apps/authorization-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ENV NODE_ENV=production
8686

8787
WORKDIR /app/ee/apps/${SERVICE}
8888

89-
RUN yarn workspaces focus --production --immutable
89+
RUN yarn workspaces focus --production
9090

9191
FROM node:22.16.0-alpine3.22
9292

ee/apps/ddp-streamer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ ENV NODE_ENV=production
8989

9090
WORKDIR /app/ee/apps/${SERVICE}
9191

92-
RUN yarn workspaces focus --production --immutable
92+
RUN yarn workspaces focus --production
9393

9494
FROM node:22.16.0-alpine3.22
9595

ee/apps/omnichannel-transcript/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ ENV NODE_ENV=production
9999

100100
WORKDIR /app/ee/apps/${SERVICE}
101101

102-
RUN yarn workspaces focus --production --immutable
102+
RUN yarn workspaces focus --production
103103

104104
FROM node:22.16.0-alpine3.22
105105

ee/apps/presence-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ ENV NODE_ENV=production
8787

8888
WORKDIR /app/ee/apps/${SERVICE}
8989

90-
RUN yarn workspaces focus --production --immutable
90+
RUN yarn workspaces focus --production
9191

9292
FROM node:22.16.0-alpine3.22
9393

ee/apps/queue-worker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ ENV NODE_ENV=production
9999

100100
WORKDIR /app/ee/apps/${SERVICE}
101101

102-
RUN yarn workspaces focus --production --immutable
102+
RUN yarn workspaces focus --production
103103

104104
FROM node:22.16.0-alpine3.22
105105

0 commit comments

Comments
 (0)