CI drop pnpm but copy server
All checks were successful
Deploy App / build (push) Successful in 1m34s
Deploy App / deploy (push) Successful in 21s

This commit is contained in:
valere
2026-01-03 11:15:57 +01:00
parent 4d1213aee4
commit 50af9716f5

View File

@@ -2,11 +2,10 @@
FROM node:20-bookworm AS builder
WORKDIR /app
COPY package*.json ./
RUN corepack enable && corepack prepare pnpm@10.27.0 --activate
RUN pnpm install
RUN npm install --legacy-peer-deps
COPY . .
RUN pnpm build
RUN npm run build
# Runtime
FROM node:20-slim AS runner