dab9bfab71
The Dockerfile build change (pnpm build → pnpm --filter @groombook/api)
was made against dev HEAD, but the root src/ directory was never fully
audited for parity with apps/api/src/. Admin routes returning 500 for
authenticated users post-OIDC login is consistent with the image
running code with incomplete middleware chain or mismatched schema
types when the root build path was used.
Revert to the apps/api/ build path which is known to work correctly.
UAT is running images from dev branch commit 9462915 which includes
this change alongside schema cleanup commits.
Root cause: Dockerfile was changed to build from root src/ instead of
apps/api/src/ without confirming the two source trees are functionally
identical. The proper fix path (schema audit + reconciliation) is
tracked in GRO-1536.
Co-Authored-By: Paperclip <noreply@paperclip.ing>
42 lines
1.2 KiB
Docker
42 lines
1.2 KiB
Docker
FROM node:22-alpine AS base
|
|
RUN corepack enable && corepack prepare pnpm@9.15.4 --activate
|
|
WORKDIR /app
|
|
|
|
# Install deps
|
|
FROM base AS deps
|
|
COPY package.json pnpm-workspace.yaml pnpm-lock.yaml ./
|
|
COPY apps/api/package.json apps/api/
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
# Build
|
|
FROM deps AS builder
|
|
RUN mkdir -p /home/node/.cache/node/corepack
|
|
COPY apps/api/ apps/api/
|
|
RUN pnpm --filter @groombook/api build
|
|
|
|
# Runtime
|
|
FROM node:22-alpine AS runner
|
|
RUN corepack enable && corepack prepare pnpm@9.15.4 --activate
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production
|
|
|
|
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
|
|
COPY --from=builder /app/apps/api/package.json apps/api/
|
|
COPY --from=builder /app/apps/api/dist apps/api/dist
|
|
RUN pnpm install --frozen-lockfile --prod
|
|
|
|
EXPOSE 3000
|
|
RUN apk add --no-cache curl
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
|
|
CMD curl -f http://localhost:3000/health || exit 1
|
|
CMD ["node", "apps/api/dist/index.js"]
|
|
|
|
FROM builder AS migrate
|
|
CMD ["pnpm", "--filter", "@groombook/api", "db:migrate"]
|
|
|
|
FROM builder AS seed
|
|
CMD ["pnpm", "--filter", "@groombook/api", "db:seed"]
|
|
|
|
FROM builder AS reset
|
|
CMD ["pnpm", "--filter", "@groombook/api", "db:reset"]
|