face-censor / Dockerfile
Spring-0's picture
Synced repo using 'sync_with_huggingface' Github Action
83d0c50 verified
raw
history blame contribute delete
226 Bytes
FROM python:3.10
WORKDIR /src
COPY . /src
RUN apt-get update && apt-get install -y libgl1-mesa-glx && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "src/main.py"]