Bot + web Dockerfiles tried to addgroup -g 1000 app on top of
node:22-alpine, which already ships a `node` group at gid 1000.
Build aborted at runtime stage 5/5 with:
addgroup: gid '1000' in use
Drop the addgroup/adduser pair on both images and just chown +
USER node onto the existing node user. Same hardening posture
(non-root, no shell login on the runtime image), one less moving
part. The compose dev overlay's `user: ${HOST_UID:-1000}:${HOST_GID:-1000}`
matches uid 1000 either way.
Plus:
- New docker-compose.portainer.yml: pulls cm-whatsapp-{bot,web}
from gitea.04080616.xyz/yiekheng instead of building from
source. Named volumes for sessions / media so the operator
doesn't need shell access to manage state. Healthchecks on
both services so Portainer's UI surfaces unhealthy containers.
- New docs/deploy-portainer.md walking through registry auth,
stack creation, env vars, migrations, first sign-in, future
redeploys, rollbacks.
- README links the Portainer guide alongside the dev path.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
1.3 KiB
Docker
38 lines
1.3 KiB
Docker
FROM node:22-alpine AS base
|
|
RUN npm install -g pnpm@9.12.0
|
|
WORKDIR /app
|
|
|
|
FROM base AS deps
|
|
COPY package.json pnpm-workspace.yaml pnpm-lock.yaml ./
|
|
COPY apps/web/package.json apps/web/
|
|
COPY packages/db/package.json packages/db/
|
|
COPY packages/shared/package.json packages/shared/
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
FROM base AS build
|
|
COPY --from=deps /app/node_modules /app/node_modules
|
|
COPY --from=deps /app/apps/web/node_modules /app/apps/web/node_modules
|
|
COPY --from=deps /app/packages/db/node_modules /app/packages/db/node_modules
|
|
COPY --from=deps /app/packages/shared/node_modules /app/packages/shared/node_modules
|
|
COPY tsconfig.base.json turbo.json ./
|
|
COPY apps/web apps/web
|
|
COPY packages/db packages/db
|
|
COPY packages/shared packages/shared
|
|
RUN pnpm --filter @cmbot/shared build && \
|
|
pnpm --filter @cmbot/db build && \
|
|
pnpm --filter @cmbot/web build
|
|
|
|
FROM base AS runtime
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
ENV HOSTNAME=0.0.0.0
|
|
COPY --from=build /app/apps/web/.next/standalone ./
|
|
COPY --from=build /app/apps/web/.next/static ./apps/web/.next/static
|
|
COPY --from=build /app/apps/web/public ./apps/web/public
|
|
# Reuse the `node` user (UID/GID 1000) that node:alpine ships with —
|
|
# `addgroup -g 1000 app` collided with the pre-existing node group.
|
|
RUN chown -R node:node /app
|
|
USER node
|
|
EXPOSE 3000
|
|
CMD ["node", "apps/web/server.js"]
|