CoolFace
Apppublic

zerovic/phi-3-mini-4k-instruct

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.10-slim2 3RUN apt-get update && apt-get install -y \4    git \5    && rm -rf /var/lib/apt/lists/*6 7WORKDIR /app8 9RUN pip install --no-cache-dir \10    fastapi \11    uvicorn \12    transformers \13    torch14 15COPY app.py /app/app.py16 17EXPOSE 786018 19CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]