The compose healthcheck for both apps was `curl -sf http://localhost:.../health`, but node:25-slim (Debian trixie-slim) ships neither curl nor wget, so the check always reported the containers as `unhealthy` even while they were happily serving 200s. Install curl in both Dockerfiles. Separately, today's flagship BRouter cleanup (PR #297) left an orphan `brouter` container behind because cd-infra's `docker compose up -d <list>` doesn't pass `--remove-orphans`. I had to remove it by hand. Pass the flag in both cd-infra and cd-apps so future service deletions clean up on the next deploy. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
1.9 KiB
Docker
47 lines
1.9 KiB
Docker
FROM node:25-slim AS base
|
|
# curl is used by the docker-compose healthcheck (node:25-slim is Debian
|
|
# trixie-slim and ships neither curl nor wget by default).
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && rm -rf /var/lib/apt/lists/*
|
|
RUN npm install -g pnpm@10.6.5
|
|
WORKDIR /app
|
|
|
|
FROM base AS deps
|
|
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
|
|
COPY apps/journal/package.json apps/journal/
|
|
COPY packages/types/package.json packages/types/
|
|
COPY packages/ui/package.json packages/ui/
|
|
COPY packages/map/package.json packages/map/
|
|
COPY packages/gpx/package.json packages/gpx/
|
|
COPY packages/i18n/package.json packages/i18n/
|
|
COPY packages/sentry-config/package.json packages/sentry-config/
|
|
COPY packages/api/package.json packages/api/
|
|
COPY packages/map-core/package.json packages/map-core/
|
|
COPY packages/db/package.json packages/db/
|
|
COPY packages/jobs/package.json packages/jobs/
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
FROM base AS build
|
|
ARG SENTRY_RELEASE
|
|
COPY --from=deps /app/ ./
|
|
COPY . .
|
|
RUN --mount=type=secret,id=SENTRY_AUTH_TOKEN \
|
|
SENTRY_AUTH_TOKEN="$(cat /run/secrets/SENTRY_AUTH_TOKEN 2>/dev/null | tr -d '\n\r')" \
|
|
SENTRY_RELEASE="$SENTRY_RELEASE" \
|
|
pnpm --filter @trails-cool/journal build
|
|
|
|
FROM base AS runtime
|
|
RUN addgroup --system app && adduser --system --ingroup app app
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY --from=deps /app/apps/journal/node_modules ./apps/journal/node_modules
|
|
COPY --from=build /app/apps/journal/build ./apps/journal/build
|
|
COPY --from=build /app/apps/journal/server.ts ./apps/journal/server.ts
|
|
COPY --from=build /app/apps/journal/app/lib ./apps/journal/app/lib
|
|
COPY --from=build /app/apps/journal/app/jobs ./apps/journal/app/jobs
|
|
COPY --from=build /app/apps/journal/package.json ./apps/journal/package.json
|
|
COPY --from=build /app/packages ./packages
|
|
|
|
WORKDIR /app/apps/journal
|
|
USER app
|
|
EXPOSE 3000
|
|
ENV PORT=3000
|
|
CMD ["node", "--experimental-strip-types", "server.ts"]
|