Spaces:
Sleeping
Sleeping
File size: 1,555 Bytes
80d8c84 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | # ReplicaLab server image with frontend (port 7860)
#
# Multi-stage build:
# Stage 1: Build the React frontend with Node.js
# Stage 2: Python runtime serving both API and static frontend
# ββ Stage 1: Frontend build ββββββββββββββββββββββββββββββββββββββββββ
FROM node:20-slim AS frontend-build
WORKDIR /build
COPY frontend/package.json frontend/package-lock.json* ./
RUN npm ci --ignore-scripts
COPY frontend/ ./
RUN npm run build
# ββ Stage 2: Python runtime ββββββββββββββββββββββββββββββββββββββββββ
FROM python:3.11-slim
WORKDIR /app
# Install system deps
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies first for better layer caching
COPY server/requirements.txt ./server/requirements.txt
RUN pip install --no-cache-dir -r server/requirements.txt
# Copy package source
COPY replicalab/ ./replicalab/
COPY server/ ./server/
COPY pyproject.toml ./
# Install the replicalab package (non-editable, deps already present)
RUN pip install --no-cache-dir . --no-deps
# Copy built frontend from stage 1
COPY --from=frontend-build /build/dist ./frontend/dist
# Run as a non-root user inside the container
RUN useradd -m -u 1000 appuser && chown -R appuser /app
USER appuser
EXPOSE 7860
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]
|