update react
Build and Deploy / build-and-deploy (push) Failing after 4m54s

This commit is contained in:
2026-05-04 21:36:00 +02:00
parent f1537b11e3
commit c97cc4cdd2
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Shared build: generates /dist (Astro site + admin SPA) and tina/__generated__ # Shared build: generates /dist (Astro site + admin SPA) and tina/__generated__
FROM node:22-alpine AS builder FROM node:24-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci --legacy-peer-deps RUN npm ci --legacy-peer-deps
@@ -16,7 +16,7 @@ COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80 EXPOSE 80
# Backend: TinaCMS self-hosted API server # Backend: TinaCMS self-hosted API server
FROM node:22-alpine AS backend FROM node:24-alpine AS backend
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci --legacy-peer-deps --omit=dev RUN npm ci --legacy-peer-deps --omit=dev
+1 -1
View File
@@ -1,5 +1,5 @@
import { createClient } from "tinacms/dist/client"; import { createClient } from "tinacms/dist/client";
import { queries } from "./types"; import { queries } from "./types";
export const client = createClient({ cacheDir: '/home/johannes/work/ideal/theater-ziefen-website/tina/__generated__/.cache/1777917319596', url: '/api/tina/gql', token: 'undefined', queries, }); export const client = createClient({ url: '/api/tina/gql', token: 'undefined', queries, });
export default client; export default client;
+1 -1
View File
File diff suppressed because one or more lines are too long