Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update node.js to v20.14.0 #494

Merged
merged 1 commit into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.backend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11-bullseye AS build
FROM node:20.14.0-bullseye AS build

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

RUN pnpm prune --prod

FROM node:20.11-bullseye As production
FROM node:20.14.0-bullseye As production

WORKDIR /home/node/app
COPY --chown=node:node --from=build /app/apps/backend/dist ./dist
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.frontend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.11-bullseye AS build
FROM node:20.14.0-bullseye AS build

WORKDIR /app
COPY --chown=node:node package.json .
Expand All @@ -22,7 +22,7 @@ COPY --chown=node:node ./apps/frontend/ ./apps/frontend/
# build
RUN pnpm -F frontend build

FROM node:20.11-bullseye As production
FROM node:20.14.0-bullseye As production

WORKDIR /home/node/app
COPY --chown=node:node --from=build /app/apps/frontend/.output ./.output
Expand Down
2 changes: 1 addition & 1 deletion apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"@types/express-session": "^1.17.10",
"@types/jest": "29.5.8",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.14",
"@types/node": "^20.14.8",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^3.0.13",
"@types/passport-oauth2": "^1.4.15",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"devDependencies": {
"@types/http-proxy": "^1.17.14",
"@types/node": "^20.11.14",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"concurrently": "^8.2.2",
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading