File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed
.github/actions/setup-node
apps/meteor/ee/server/services Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,12 @@ runs:
9292 - name : yarn install
9393 if : inputs.install && inputs.type == 'development'
9494 shell : bash
95- run : YARN_ENABLE_HARDENED_MODE=${{ inputs.HARDENED_MODE }} yarn
95+ run : YARN_ENABLE_HARDENED_MODE=${{ inputs.HARDENED_MODE }} yarn --frozen-lockfile
9696
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
100+ run : YARN_ENABLE_HARDENED_MODE=${{ inputs.HARDENED_MODE }} yarn workspaces focus --all --production --frozen-lockfile
101101
102102 - name : restore yarn config file
103103 if : inputs.install
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ COPY ./packages/models packages/models
2323
2424COPY ./apps/meteor/ee/server/services apps/meteor/ee/server/services
2525
26- RUN yarn install
26+ RUN yarn install --frozen-lockfile
2727
2828RUN yarn workspace @rocket.chat/core-typings run build \
2929 && yarn workspace @rocket.chat/rest-typings run build
@@ -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 && \
79+ yarn workspaces focus --production --frozen-lockfile && \
8080 rm -rf /var/cache/apk/* && \
8181 apk del build-dependencies
8282
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ ENV NODE_ENV=production
8686
8787WORKDIR /app/ee/apps/${SERVICE}
8888
89- RUN yarn workspaces focus --production
89+ RUN yarn workspaces focus --production --frozen-lockfile
9090
9191FROM node:22.16.0-alpine3.22
9292
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ ENV NODE_ENV=production
8686
8787WORKDIR /app/ee/apps/${SERVICE}
8888
89- RUN yarn workspaces focus --production
89+ RUN yarn workspaces focus --production --frozen-lockfile
9090
9191FROM node:22.16.0-alpine3.22
9292
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ ENV NODE_ENV=production
8989
9090WORKDIR /app/ee/apps/${SERVICE}
9191
92- RUN yarn workspaces focus --production
92+ RUN yarn workspaces focus --production --frozen-lockfile
9393
9494FROM node:22.16.0-alpine3.22
9595
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ ENV NODE_ENV=production
9999
100100WORKDIR /app/ee/apps/${SERVICE}
101101
102- RUN yarn workspaces focus --production
102+ RUN yarn workspaces focus --production --frozen-lockfile
103103
104104FROM node:22.16.0-alpine3.22
105105
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ ENV NODE_ENV=production
8787
8888WORKDIR /app/ee/apps/${SERVICE}
8989
90- RUN yarn workspaces focus --production
90+ RUN yarn workspaces focus --production --frozen-lockfile
9191
9292FROM node:22.16.0-alpine3.22
9393
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ ENV NODE_ENV=production
9999
100100WORKDIR /app/ee/apps/${SERVICE}
101101
102- RUN yarn workspaces focus --production
102+ RUN yarn workspaces focus --production --frozen-lockfile
103103
104104FROM node:22.16.0-alpine3.22
105105
You can’t perform that action at this time.
0 commit comments