- Kaniko: --cache-ttl=168h, --snapshot-mode=redo, --compressed-caching=false - Dockerfile: Split server-build into server-deps + server-build for better layer caching - Replace rm+reinstall node_modules with npm prune --omit=dev - Move ffmpeg/yt-dlp install to tools/install-tools.sh (single RUN layer) - Remove separate ffmpeg-fetch stage and inline curl/yt-dlp install - Remove $CI_COMMIT_SHA tag destination (unused, saves push time) - bump-version: alpine/git image instead of alpine + apk add git Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
1.1 KiB
Docker
34 lines
1.1 KiB
Docker
FROM node:24-slim AS web-build
|
|
WORKDIR /app/web
|
|
COPY web/package*.json ./
|
|
RUN npm install --no-audit --no-fund
|
|
COPY web/ .
|
|
ARG VITE_BUILD_CHANNEL=stable
|
|
ARG VITE_APP_VERSION=dev
|
|
ENV VITE_BUILD_CHANNEL=$VITE_BUILD_CHANNEL
|
|
ENV VITE_APP_VERSION=$VITE_APP_VERSION
|
|
RUN npm run build
|
|
|
|
FROM node:24-slim AS server-deps
|
|
WORKDIR /app/server
|
|
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
|
|
COPY server/package*.json ./
|
|
RUN npm install --no-audit --no-fund
|
|
|
|
FROM server-deps AS server-build
|
|
COPY server/ .
|
|
RUN npm run build
|
|
RUN npm prune --omit=dev
|
|
|
|
FROM node:24-slim AS runtime
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production PORT=8080 DATA_DIR=/data
|
|
COPY --from=server-build /app/server/dist ./server/dist
|
|
COPY --from=server-build /app/server/node_modules ./server/node_modules
|
|
COPY --from=server-build /app/server/package.json ./server/package.json
|
|
COPY --from=web-build /app/web/dist ./web/dist
|
|
COPY tools/install-tools.sh /tmp/install-tools.sh
|
|
RUN chmod +x /tmp/install-tools.sh && /tmp/install-tools.sh && rm /tmp/install-tools.sh
|
|
EXPOSE 8080
|
|
VOLUME ["/data"]
|
|
CMD ["node", "server/dist/index.js"]
|