Aktueller Stand

This commit is contained in:
2026-01-15 16:24:09 +01:00
parent 5d2630a02f
commit 46eae2a2a9
70 changed files with 7866 additions and 447 deletions

View File

@@ -12,6 +12,8 @@ RUN --mount=type=cache,target=/root/.npm \
FROM base AS builder
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN --mount=type=cache,target=/root/.npm \
if [ ! -d node_modules/@fullcalendar/core ]; then npm install; fi
RUN npm run build
FROM base AS runner