Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM node:22-alpine AS builder
FROM node:24-alpine AS builder

# Install pnpm and git
RUN apk add --no-cache git && \
Expand All @@ -23,7 +23,7 @@ COPY . .
RUN pnpm build

# Production stage
FROM node:22-alpine AS production
FROM node:24-alpine AS production

# Install pnpm and remove npm (contains vulnerable glob@10.4.5)
RUN corepack enable && corepack prepare pnpm@latest --activate && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Development Dockerfile with hot reload support
FROM node:22-alpine
FROM node:24-alpine

# Install pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/node": "^24.0.0",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
Expand Down
Loading