CoolFace
Apppublic

XARIS13/topicminer-bertopic

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5# Install system dependencies6RUN apt-get update && apt-get install -y \7    build-essential \8    && rm -rf /var/lib/apt/lists/*9 10# Install Python dependencies11COPY requirements.txt .12RUN pip install --no-cache-dir -r requirements.txt13 14# Copy app15COPY app.py .16 17# HF Spaces uses port 786018EXPOSE 786019 20CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]21