CoolFace
Apppublic

wavespeed/wan-2-6-image-edit

sourceHugging Facemitupdated 1mo agoView on Hugging Face
1likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10EXPOSE 786011ENV GRADIO_SERVER_NAME="0.0.0.0" \12    GRADIO_SERVER_PORT="7860" \13    GRADIO_ANALYTICS_ENABLED="False" \14    HF_HUB_DISABLE_TELEMETRY="1"15 16CMD ["python", "app.py"]17