add missing packages
Build and Deploy / build-and-deploy (push) Failing after 57m44s

This commit is contained in:
2026-05-06 07:38:57 +02:00
parent c97cc4cdd2
commit 9dc458fa47
3 changed files with 6836 additions and 8798 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Shared build: generates /dist (Astro site + admin SPA) and tina/__generated__
FROM node:24-alpine AS builder
FROM node:24 AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --legacy-peer-deps
@@ -16,7 +16,7 @@ COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80
# Backend: TinaCMS self-hosted API server
FROM node:24-alpine AS backend
FROM node:24 AS backend
WORKDIR /app
COPY package*.json ./
RUN npm ci --legacy-peer-deps --omit=dev