automated update: 2026-06-10 22:31:20

This commit is contained in:
root
2026-06-10 22:31:20 -04:00
parent b9b734507b
commit cdf10452fb
6 changed files with 110 additions and 22 deletions
+36 -6
View File
@@ -1,14 +1,27 @@
FROM nvidia/cuda:12.4.1-runtime-ubuntu22.04
# =============================================================================
# Stage 1: Base — platform-specific base image
# =============================================================================
# amd64: NVIDIA CUDA runtime (for GPU acceleration)
# arm64: Plain Ubuntu (no CUDA on ARM; CPU or media-kit only)
FROM --platform=$BUILDPLATFORM nvidia/cuda:12.4.1-runtime-ubuntu22.04 AS base-amd64
FROM --platform=$BUILDPLATFORM ubuntu:22.04 AS base-arm64
# =============================================================================
# Stage 2: Build — install system packages + Python + uv
# =============================================================================
ARG TARGETARCH
FROM base-${TARGETARCH} AS build
ENV DEBIAN_FRONTEND=noninteractive
# Add this BEFORE the apt-get update to handle dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
gnupg \
&& rm -rf /var/lib/apt/lists/*
# Add deadsnakes PPA and install Python
RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
&& add-apt-repository ppa:deadsnakes/ppa -y \
@@ -22,14 +35,31 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
&& cp /root/.local/bin/uv /usr/local/bin/uv
WORKDIR /app
# Copy project files instead of git clone for reproducible builds
# Copy project files first (for layer caching)
COPY pyproject.toml uv.lock* ./
COPY if_curator/ if_curator/
RUN uv sync --extra gpu --extra object && uv add croniter && uv cache clean
COPY entrypoint.sh scheduler.py ./
# Platform-conditional Python deps:
# amd64: install GPU extras (onnxruntime-gpu + CUDA torch)
# arm64: install CPU-only (onnxruntime + torch-cpu)
RUN if [ "$(uname -m)" = "x86_64" ]; then \
uv sync --extra gpu --extra object && uv add croniter; \
else \
uv sync --extra object --no-binary torch && \
UV_TORCH_INDEX_URL=https://download.pytorch.org/whl/cpu uv pip install torch && \
uv add croniter; \
fi \
&& uv cache clean
COPY entrypoint.sh scheduler.py /app/
RUN chmod +x /app/entrypoint.sh
# =============================================================================
# Stage 3: Runtime — minimal image with appuser
# =============================================================================
FROM build AS runtime
RUN groupadd -g 568 apps && useradd -u 568 -g apps -m -s /bin/bash appuser \
&& mkdir -p /models/.insightface /models/huggingface \
&& chown -R appuser:apps /app /models