Skip to content

Commit 9bd2ba4

Browse files
chore(deps): update node.js to v20.18.3
1 parent d862dbc commit 9bd2ba4

File tree

5 files changed

+149
-146
lines changed

5 files changed

+149
-146
lines changed

Dockerfile.backend

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.14.0-bullseye AS build
1+
FROM node:20.18.3-bullseye AS build
22

33
WORKDIR /app
44
COPY --chown=node:node package.json .
@@ -24,7 +24,7 @@ RUN pnpm -F backend build
2424

2525
RUN pnpm prune --prod
2626

27-
FROM node:20.14.0-bullseye As production
27+
FROM node:20.18.3-bullseye As production
2828

2929
WORKDIR /home/node/app
3030
COPY --chown=node:node --from=build /app/apps/backend/dist ./dist

Dockerfile.frontend

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.14.0-bullseye AS build
1+
FROM node:20.18.3-bullseye AS build
22

33
WORKDIR /app
44
COPY --chown=node:node package.json .
@@ -22,7 +22,7 @@ COPY --chown=node:node ./apps/frontend/ ./apps/frontend/
2222
# build
2323
RUN pnpm -F frontend build
2424

25-
FROM node:20.14.0-bullseye As production
25+
FROM node:20.18.3-bullseye As production
2626

2727
WORKDIR /home/node/app
2828
COPY --chown=node:node --from=build /app/apps/frontend/.output ./.output

apps/backend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@types/express-session": "^1.17.10",
6464
"@types/jest": "29.5.8",
6565
"@types/multer": "^1.4.11",
66-
"@types/node": "^20.14.8",
66+
"@types/node": "^20.17.24",
6767
"@types/passport": "^1.0.16",
6868
"@types/passport-jwt": "^3.0.13",
6969
"@types/passport-oauth2": "^1.4.15",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@types/http-proxy": "^1.17.14",
25-
"@types/node": "^20.14.8",
25+
"@types/node": "^20.17.24",
2626
"@typescript-eslint/eslint-plugin": "^6.14.0",
2727
"@typescript-eslint/parser": "^6.14.0",
2828
"concurrently": "^8.2.2",

0 commit comments

Comments
 (0)