Skip to content

Commit 0e680b0

Browse files
authored
Merge pull request #71 from aurelianware/copilot/sub-pr-66
Add Prisma 7.x compatibility requirements: Node.js 20.19+ and TypeScript 5.4+
2 parents 1a80593 + 59bc21c commit 0e680b0

3 files changed

Lines changed: 18 additions & 14 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Multi-stage build for production optimization
2-
FROM node:20-bullseye AS build
2+
FROM node:20.19-bullseye AS build
33
WORKDIR /app
44
# Use official Node.js runtime as base image
5-
FROM node:20-slim
5+
FROM node:20.19-slim
66

77
# Install curl for health checks
88
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
@@ -24,7 +24,7 @@ RUN npm ci
2424
COPY . .
2525
RUN npm run build
2626

27-
FROM node:20-alpine AS runtime
27+
FROM node:20.19-alpine AS runtime
2828
WORKDIR /app
2929
ENV NODE_ENV=production
3030
COPY package*.json ./

package-lock.json

Lines changed: 14 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"react-refresh": "^0.18.0",
7777
"tailwindcss": "^4.1.17",
7878
"ts-node": "^10.9.2",
79-
"typescript": "^5.0.2",
79+
"typescript": "^5.4.0",
8080
"vite": "^7.3.1",
8181
"vite-plugin-pwa": "^1.1.0",
8282
"vitest": "^4.0.17"

0 commit comments

Comments
 (0)