CoolFace
Apppublic

Spring-0/face-censor

sourceHugging Faceupdated 4mo agoView on Hugging Face
6likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.102WORKDIR /src3COPY . /src4 5RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 && rm -rf /var/lib/apt/lists/*6 7RUN pip install --no-cache-dir -r requirements.txt8 9EXPOSE 786010 11CMD ["python", "src/main.py"]