This commit is contained in:
2026-01-28 12:52:25 +00:00
commit f516ba6c8b
36 changed files with 5356 additions and 0 deletions

32
Dockerfile Normal file
View File

@@ -0,0 +1,32 @@
# Stage 1: UV + Python base with beets
FROM python:3.11-slim AS python-base
RUN apt-get update && apt-get install -y curl ffmpeg imagemagick git && rm -rf /var/lib/apt/lists/*
RUN pip install uv
WORKDIR /app
COPY requirements.txt ./
RUN uv pip install -r requirements.txt
# Stage 2: Node build
FROM node:24-alpine AS node-builder
WORKDIR /app
COPY package*.json pnpm-lock.yaml* ./
COPY .npmrc ./
RUN corepack enable pnpm && pnpm install --frozen-lockfile
COPY . .
RUN corepack enable pnpm && pnpm build
# Stage 3: Unified runtime
FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl ffmpeg imagemagick git && rm -rf /var/lib/apt/lists/*
RUN pip install uv
WORKDIR /app
COPY requirements.txt ./
RUN uv pip install -r requirements.txt
COPY --from=node-builder /app/package*.json ./
COPY --from=node-builder /app/node_modules ./node_modules
COPY --from=node-builder /app/build ./build
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 appuser
USER appuser
EXPOSE 3000
CMD ["node", "build"]