Spaces:
Running
Running
File size: 1,280 Bytes
58ddd29 | 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 51 | FROM python:3.10
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# =========================================================
# SYSTEM DEPENDENCIES
# =========================================================
RUN apt-get update && apt-get install -y \
build-essential \
gcc \
g++ \
cmake \
git \
curl \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# =========================================================
# COPY REQUIREMENTS
# =========================================================
COPY requirements.txt .
# =========================================================
# INSTALL PYTHON PACKAGES
# =========================================================
RUN pip install --upgrade pip
# Force wheel install first
RUN pip install --no-cache-dir \
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu \
llama-cpp-python==0.3.22
# Install remaining requirements
RUN pip install --no-cache-dir -r requirements.txt
# =========================================================
# COPY APP
# =========================================================
COPY . .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |