Build & Deploy / build-and-push (backend) (push) Failing after 39s
Build & Deploy / build-and-push (discord-gateway) (push) Failing after 26s
Build & Deploy / build-and-push (proxy) (push) Failing after 24s
- Remove root pnpm-lock.yaml (stale monorepo lockfile) - Rename root package from bete-monorepo to bete - Clean up root scripts to use cd instead of pnpm --prefix - Remove ignoreScripts/trustedDependencies from frontend package.json - Optimize Dockerfiles with multi-stage builds and proper layer caching - Update .dockerignore to exclude build artifacts - Remove leftover pnpm test config file from frontend
61 lines
1.9 KiB
Docker
61 lines
1.9 KiB
Docker
# ---- Builder stage: native addons + TypeScript ----
|
|
FROM node:22-slim AS builder
|
|
|
|
WORKDIR /build
|
|
|
|
# Install pnpm and allow postinstall scripts for native addons
|
|
RUN corepack enable \
|
|
&& pnpm config set onlyBuiltDependencies '*' --location project
|
|
|
|
# Build tools + Rust (required by @dank074/discord-video-stream)
|
|
RUN apt-get update -qq && apt-get install -y -qq --no-install-recommends \
|
|
python3 make g++ curl ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Rust toolchain (separate RUN so the layer can cache if apt changes)
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
# Manifest files first for layer caching
|
|
COPY services/discord-gateway/package.json ./
|
|
COPY patches/ ./patches/
|
|
|
|
# Install all deps (devDeps needed for TypeScript build)
|
|
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store \
|
|
pnpm install --no-frozen-lockfile
|
|
|
|
# Source code (shared code embedded in src/shared/)
|
|
COPY services/discord-gateway/ ./
|
|
COPY services/discord-gateway/drizzle ./drizzle
|
|
|
|
# Build TypeScript
|
|
RUN pnpm run build
|
|
|
|
# Strip devDependencies — only production deps in final image
|
|
RUN pnpm prune --prod
|
|
|
|
# ---- Runtime stage: minimal ----
|
|
FROM node:22-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Runtime system deps only (ffmpeg for audio processing)
|
|
RUN apt-get update -qq && apt-get install -y -qq --no-install-recommends \
|
|
ffmpeg ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Only production artifacts from builder
|
|
COPY --from=builder /build/dist ./dist
|
|
COPY --from=builder /build/node_modules ./node_modules
|
|
COPY --from=builder /build/package.json ./
|
|
COPY --from=builder /build/drizzle ./drizzle
|
|
|
|
# Create recordings dir
|
|
RUN mkdir -p /app/recordings && chown -R node:node /app
|
|
USER node
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \
|
|
CMD sh -c "kill -0 1"
|
|
|
|
CMD ["node", "dist/index.js"]
|