| | FROM python:3.10-slim |
| |
|
| | |
| | WORKDIR /app |
| |
|
| | |
| | RUN apt-get update && apt-get install -y \ |
| | git \ |
| | build-essential \ |
| | libgl1 \ |
| | libglib2.0-0 \ |
| | libsm6 \ |
| | libxext6 \ |
| | libxrender-dev \ |
| | libgomp1 \ |
| | && rm -rf /var/lib/apt/lists/* |
| |
|
| | |
| | COPY requirements.txt . |
| |
|
| | |
| | RUN pip install --no-cache-dir --upgrade pip && \ |
| | pip install --no-cache-dir -r requirements.txt |
| |
|
| | |
| | RUN git clone https://github.com/TonyAssi/Segment-Body.git && \ |
| | cp Segment-Body/SegBody.py . && \ |
| | pip install -r Segment-Body/requirements.txt |
| |
|
| | |
| | COPY app.py . |
| |
|
| | |
| | EXPOSE 7860 |
| |
|
| | |
| | ENV PYTHONUNBUFFERED=1 |
| | ENV GRADIO_SERVER_NAME=0.0.0.0 |
| | ENV GRADIO_SERVER_PORT=7860 |
| |
|
| | |
| | CMD ["python", "app.py"] |
| |
|