Spaces:
Sleeping
Sleeping
File size: 991 Bytes
07ed12b | 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 | # โโ Stage 1 : Build SvelteKit โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
FROM node:20-slim AS frontend-builder
WORKDIR /app/frontend
COPY frontend/package*.json ./
RUN npm ci --prefer-offline
COPY frontend/ ./
RUN npm run build # โ frontend/build/
# โโ Stage 2 : Runtime Python โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
FROM python:3.11-slim
WORKDIR /app
# Deps Python
COPY backend/requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Code backend
COPY backend/ ./backend/
# Build frontend statique (servi par FastAPI)
COPY --from=frontend-builder /app/frontend/build ./frontend/build
# HF Spaces exige le port 7860
EXPOSE 7860
WORKDIR /app/backend
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "1"]
|