PreranTej/bias-detection-api
0
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"]