- Dockerfile (NVIDIA RTX 3070, CUDA 12.4, PyTorch 2.3+) - Dockerfile.amd (AMD Radeon 9070, ROCm 6.2) - docker-compose.yml (NVIDIA) / docker-compose.amd.yml (AMD) - ComfyUI-Manager fuer einfache Node-Installation - AudioCraft (MusicGen, AudioGen) fuer Game Audio Generierung Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.3 KiB
Docker
44 lines
1.3 KiB
Docker
FROM nvidia/cuda:12.4.1-cudnn-runtime-ubuntu22.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
# System dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
python3.10 \
|
|
python3-pip \
|
|
python3.10-venv \
|
|
git \
|
|
wget \
|
|
ffmpeg \
|
|
libsndfile1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN ln -s /usr/bin/python3.10 /usr/bin/python
|
|
|
|
WORKDIR /app
|
|
|
|
ENV GIT_TERMINAL_PROMPT=0
|
|
|
|
# Clone ComfyUI
|
|
RUN git clone https://github.com/comfyanonymous/ComfyUI.git
|
|
|
|
WORKDIR /app/ComfyUI
|
|
|
|
# Install ComfyUI dependencies
|
|
RUN pip install --no-cache-dir "torch>=2.3.0" torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Install ComfyUI-Manager (für einfache Node-Installation über die UI)
|
|
RUN git clone https://github.com/ltdrdata/ComfyUI-Manager.git custom_nodes/ComfyUI-Manager
|
|
RUN pip install --no-cache-dir -r custom_nodes/ComfyUI-Manager/requirements.txt
|
|
|
|
# Build tools für PyAV (audiocraft dependency)
|
|
RUN apt-get update && apt-get install -y pkg-config libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libswresample-dev libavfilter-dev && rm -rf /var/lib/apt/lists/*
|
|
|
|
# AudioCraft (MusicGen, AudioGen von Meta)
|
|
RUN pip install --no-cache-dir audiocraft
|
|
|
|
EXPOSE 8188
|
|
|
|
CMD ["python", "main.py", "--listen", "0.0.0.0", "--port", "8188"]
|