plexi-api / Dockerfile
LazyHuman10
Initial commit for HF Space
3b6130d
raw
history blame contribute delete
522 Bytes
# HuggingFace Spaces — Plexi API
# Uses Python 3.11 slim. HF Spaces expects the app on port 7860.
FROM python:3.11-slim
WORKDIR /app
# System deps for sentence-transformers (tokenizers, etc.)
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# HuggingFace Spaces default port
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]