File tree Expand file tree Collapse file tree 18 files changed +34
-32
lines changed
packages/apps-engine/deno-runtime Expand file tree Collapse file tree 18 files changed +34
-32
lines changed Original file line number Diff line number Diff line change 1818 uses : ./.github/actions/setup-node
1919 with :
2020 node-version : 22.16.0
21- deno-version : 1.43.5
21+ deno-version : 2.3.1
2222 cache-modules : true
2323 install : true
2424
Original file line number Diff line number Diff line change 3535 uses : ./.github/actions/setup-node
3636 with :
3737 node-version : 22.16.0
38- deno-version : 1.43.5
38+ deno-version : 2.3.1
3939 cache-modules : true
4040 install : true
4141 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 2222 uses : ./.github/actions/setup-node
2323 with :
2424 node-version : 22.16.0
25- deno-version : 1.43.5
25+ deno-version : 2.3.1
2626 cache-modules : true
2727 install : true
2828 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 2525 uses : ./.github/actions/setup-node
2626 with :
2727 node-version : 22.16.0
28- deno-version : 1.43.5
28+ deno-version : 2.3.1
2929 cache-modules : true
3030 install : true
3131 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1616 uses : ./.github/actions/setup-node
1717 with :
1818 node-version : 22.16.0
19- deno-version : 1.43.5
19+ deno-version : 2.3.1
2020 cache-modules : true
2121 install : true
2222 NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1- deno 1.43.5
1+ deno 2.3.1
Original file line number Diff line number Diff line change 1- FROM node:22.16.0-alpine3.20 AS builder
1+ FROM node:22.16.0-alpine3.22 AS builder
22
33ENV LANG=C.UTF-8
44
@@ -11,7 +11,7 @@ ENV NODE_ENV=production
1111RUN cd /app/bundle/programs/server \
1212 && npm install --omit=dev
1313
14- FROM node:22.16.0-alpine3.20
14+ FROM node:22.16.0-alpine3.22
1515
1616LABEL maintainer="buildmaster@rocket.chat"
1717
@@ -31,7 +31,7 @@ ENV LANG=C.UTF-8
3131# """
3232RUN apk add --no-cache shadow deno ttf-dejavu \
3333 # Update OpenSSL
34- # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
34+ # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
3535 && apk upgrade --no-cache openssl \
3636 && groupmod -n rocketchat nogroup \
3737 && useradd -u 65533 -r -g rocketchat rocketchat
Original file line number Diff line number Diff line change 1- FROM node:22.16.0-alpine3.21 as build
1+ FROM node:22.16.0-alpine3.22 as build
22
33WORKDIR /app
44
@@ -28,7 +28,7 @@ RUN yarn install
2828RUN yarn workspace @rocket.chat/core-typings run build \
2929 && yarn workspace @rocket.chat/rest-typings run build
3030
31- FROM node:22.16.0-alpine3.21
31+ FROM node:22.16.0-alpine3.22
3232
3333ARG SERVICE
3434
@@ -74,7 +74,7 @@ WORKDIR /app/apps/meteor/ee/server/services
7474RUN apk update && \
7575 apk --no-cache --virtual build-dependencies add g++ python3 make py3-setuptools && \
7676 # Update OpenSSL
77- # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
77+ # 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 && \
7979 yarn workspaces focus --production && \
8080 rm -rf /var/cache/apk/* && \
Original file line number Diff line number Diff line change 1- FROM node:22.16.0-alpine3.21 AS builder
1+ FROM node:22.16.0-alpine3.22 AS builder
22
33ARG SERVICE
44
@@ -88,7 +88,7 @@ WORKDIR /app/ee/apps/${SERVICE}
8888
8989RUN yarn workspaces focus --production
9090
91- FROM node:22.16.0-alpine3.21
91+ FROM node:22.16.0-alpine3.22
9292
9393ARG SERVICE
9494
@@ -98,7 +98,7 @@ ENV NODE_ENV=production \
9898RUN apk update && \
9999 apk --no-cache --virtual deps add shadow && \
100100 # Update OpenSSL
101- # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
101+ # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
102102 apk upgrade --no-cache openssl && \
103103 rm -rf /var/cache/apk/* && \
104104 groupmod -n rocketchat nogroup && \
Original file line number Diff line number Diff line change 1- FROM node:22.16.0-alpine3.21 AS builder
1+ FROM node:22.16.0-alpine3.22 AS builder
22
33ARG SERVICE
44
@@ -88,7 +88,7 @@ WORKDIR /app/ee/apps/${SERVICE}
8888
8989RUN yarn workspaces focus --production
9090
91- FROM node:22.16.0-alpine3.21
91+ FROM node:22.16.0-alpine3.22
9292
9393ARG SERVICE
9494
@@ -98,7 +98,7 @@ ENV NODE_ENV=production \
9898RUN apk update && \
9999 apk --no-cache --virtual deps add shadow && \
100100 # Update OpenSSL
101- # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.21
101+ # CVE -> https://scout.docker.com/vulnerabilities/id/CVE-2025-9230?s=alpine&n=openssl&ns=alpine&t=apk&osn=alpine&osv=3.22
102102 apk upgrade --no-cache openssl && \
103103 rm -rf /var/cache/apk/* && \
104104 groupmod -n rocketchat nogroup && \
You can’t perform that action at this time.
0 commit comments