nova-1-chat / Dockerfile
Bc-AI's picture
Dockerfile: CPU-optimized Docker Space for Nova-1
5500e5f verified
Raw
History Blame Contribute Delete
1.07 kB
FROM python:3.11-slim
# ─── system deps ──────────────────────────────────────────
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
&& rm -rf /var/lib/apt/lists/*
# ─── CPU-thread env (torch will auto-detect, but this helps MKL/OMP) ──
ENV OMP_NUM_THREADS=4
ENV MKL_NUM_THREADS=4
ENV TOKENIZERS_PARALLELISM=false
ENV HF_HOME=/app/.hf_cache
ENV TRANSFORMERS_CACHE=/app/.hf_cache
WORKDIR /app
# ─── Python deps ──────────────────────────────────────────
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# ─── app code ─────────────────────────────────────────────
COPY app.py .
COPY static/ static/
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "1"]