fix: Add missing relations to Prisma schema (Pet/Booking, Invoice/Booking)

This commit is contained in:
Robert Perez
2026-07-11 18:37:34 +00:00
parent 1e7a184e94
commit cdaf5780e5
5 changed files with 92 additions and 73 deletions
+13
View File
@@ -9,6 +9,19 @@ COPY . .
RUN npx prisma generate
RUN npm run build
FROM node:22-alpine AS dev
WORKDIR /app
COPY package.json yarn.lock* ./
RUN yarn install --frozen-lockfile 2>/dev/null || npm install
COPY . .
RUN npx prisma generate
EXPOSE 3000
CMD ["npm", "run", "start:dev"]
FROM node:22-alpine
WORKDIR /app