SkinvsNonsSkin / DockerFile
AsifZaman1912's picture
Upload 4 files
56527ac verified
Raw
History Blame Contribute Delete
342 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# IMPORTANT: Hugging Face uses 7860
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]