CoolFace
Apppublic

alter1/nova-llm-code

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5# Install system dependencies for GPU support6RUN apt-get update && apt-get install -y \7    build-essential \8    git \9    && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt .12RUN pip install --no-cache-dir -r requirements.txt13 14COPY . .15 16CMD ["python", "app.py"]17