Input-Text geht, CORS behoben

This commit is contained in:
2025-09-24 21:10:11 +00:00
parent ef4ab9e800
commit a9428fee94
23 changed files with 257 additions and 71 deletions

View File

@@ -1,5 +1,5 @@
# Backend Dockerfile
FROM node:18-alpine AS builder
FROM node:22.12.0-alpine AS builder
# Install OpenSSL for Prisma compatibility
RUN apk add --no-cache openssl openssl-dev
@@ -20,7 +20,7 @@ COPY . .
RUN npm run build
# Production stage
FROM node:18-alpine AS production
FROM node:22.12.0-alpine AS production
# Install required system dependencies for Prisma and health checks
RUN apk add --no-cache \