skill-retrieval / Dockerfile
zcheng256's picture
Upload Dockerfile with huggingface_hub
b36a56b verified
Raw
History Blame Contribute Delete
222 Bytes
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir \
starlette uvicorn \
faiss-cpu numpy \
sentence-transformers \
huggingface-hub
COPY serve.py .
EXPOSE 7860
CMD ["python", "serve.py"]