mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-31 20:24:23 +01:00
31 lines
997 B
Docker
31 lines
997 B
Docker
# syntax=docker/dockerfile:1.7
|
|
|
|
FROM node:22-slim AS base
|
|
ENV PNPM_HOME=/usr/local/share/pnpm
|
|
ENV PATH=${PNPM_HOME}:${PATH}
|
|
RUN corepack enable pnpm && apt-get update && apt-get install -y git openssh-client && rm -rf /var/lib/apt/lists/*
|
|
|
|
FROM base AS builder
|
|
WORKDIR /app
|
|
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
|
|
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
|
|
pnpm install --frozen-lockfile
|
|
|
|
COPY . .
|
|
RUN chmod +x scripts/docker-entrypoint.sh
|
|
RUN --mount=type=cache,id=pnpm-store,target=/root/.pnpm-store \
|
|
pnpm build && pnpm prune --prod
|
|
|
|
FROM base AS runner
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production \
|
|
PORT=3400 \
|
|
PATH="/app/node_modules/.bin:${PATH}"
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/dist ./dist
|
|
COPY --from=builder /app/scripts/docker-entrypoint.sh ./scripts/docker-entrypoint.sh
|
|
COPY package.json pnpm-lock.yaml ./
|
|
EXPOSE 3400
|
|
ENTRYPOINT ["./scripts/docker-entrypoint.sh"]
|
|
CMD ["node", "dist/main.js"]
|