CoolFace
Apppublic

crbns/drestly-image-processing

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1FROM python:3.12-slim2WORKDIR /app3 4RUN apt-get update && apt-get install -y --no-install-recommends \5  libgl1 libglib2.0-0 && rm -rf /var/lib/apt/lists/*6 7COPY requirements.txt .8RUN pip install --no-cache-dir -r requirements.txt9 10COPY . .11 12RUN rembg d birefnet-general-lite13 14CMD ["sh", "-c", "exec uvicorn main:app --host 0.0.0.0 --port 7860"]15