vivekchakraverty's picture
Deploy CPU-first GameMaster Design Copilot
68d076e verified
Raw
History Blame Contribute Delete
531 Bytes
FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
HF_HOME=/data/.huggingface \
HF_HUB_CACHE=/data/.cache/huggingface/hub
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
cmake \
curl \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]