CoolFace
Apppublic

PreranTej/bias-detection-api

sourceHugging Faceopenrailupdated 5mo agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    gcc \7    && rm -rf /var/lib/apt/lists/*8 9COPY requirements.txt .10RUN pip install --no-cache-dir -r requirements.txt11 12COPY . .13 14EXPOSE 786015 16CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]