mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 19:01:23 +02:00
All standalone SvelteKit web apps have been superseded by the unified ManaCore app (apps/manacore/apps/web). Moved to web-archived/ within each project to preserve history while removing from active workspace. Archived: calc, cards, chat, citycorners, contacts, context, guides, inventar, moodlit, mukke, news, nutriphi, photos, picture, planta, presi, questions, skilltree, storage, times, zitare, todo, calendar, uload, memoro Moved to apps-archived/: wisekeep (not integrated, inactive) Kept active: manacore (unified), matrix, manavoxel, arcade (separate containers) Server, landing, and package directories remain active for each project. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
1.1 KiB
Docker
30 lines
1.1 KiB
Docker
# syntax=docker/dockerfile:1
|
|
FROM sveltekit-base:local AS builder
|
|
|
|
ARG PUBLIC_MANA_CORE_AUTH_URL=http://mana-auth:3001
|
|
ENV PUBLIC_MANA_CORE_AUTH_URL=$PUBLIC_MANA_CORE_AUTH_URL
|
|
|
|
COPY apps/calc/apps/web ./apps/calc/apps/web
|
|
COPY apps/calc/packages ./apps/calc/packages
|
|
|
|
RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \
|
|
pnpm install --no-frozen-lockfile --ignore-scripts
|
|
|
|
WORKDIR /app/apps/calc/apps/web
|
|
RUN pnpm exec svelte-kit sync
|
|
RUN NODE_OPTIONS="--max-old-space-size=4096" pnpm build
|
|
|
|
FROM node:20-alpine AS production
|
|
WORKDIR /app/apps/calc/apps/web
|
|
COPY --from=builder /app/node_modules/.pnpm /app/node_modules/.pnpm
|
|
COPY --from=builder /app/apps/calc/apps/web/node_modules ./node_modules
|
|
COPY --from=builder /app/apps/calc/apps/web/build ./build
|
|
COPY --from=builder /app/apps/calc/apps/web/package.json ./
|
|
|
|
EXPOSE 5026
|
|
ENV NODE_ENV=production PORT=5026 HOST=0.0.0.0
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:5026/health || exit 1
|
|
|
|
CMD ["node", "build"]
|