• Joined on 2023-01-02

warhol (base)

Published 2026-02-10 02:16:08 +00:00 by steve

Installation

docker pull gitea.stevedudenhoeffer.com/steve/warhol:base
sha256:3e230588491e7a005b4fc515a92c8828783e6233dd805d80478ab496fcc8ec7e

Images

Digest OS / Arch Size
2974e29bdb linux/amd64 6.0 GiB

Image Layers ( linux/amd64)

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.ref.name=ubuntu
LABEL org.opencontainers.image.version=22.04
ADD file:3bd10da0673e2e72cb06a1f64a9df49a36341df39b0f762e3d1b38ee4de296fa in /
CMD ["/bin/bash"]
ENV NVARCH=x86_64
ENV NVIDIA_REQUIRE_CUDA=cuda>=12.4 brand=tesla,driver>=470,driver<471 brand=unknown,driver>=470,driver<471 brand=nvidia,driver>=470,driver<471 brand=nvidiartx,driver>=470,driver<471 brand=geforce,driver>=470,driver<471 brand=geforcertx,driver>=470,driver<471 brand=quadro,driver>=470,driver<471 brand=quadrortx,driver>=470,driver<471 brand=titan,driver>=470,driver<471 brand=titanrtx,driver>=470,driver<471 brand=tesla,driver>=525,driver<526 brand=unknown,driver>=525,driver<526 brand=nvidia,driver>=525,driver<526 brand=nvidiartx,driver>=525,driver<526 brand=geforce,driver>=525,driver<526 brand=geforcertx,driver>=525,driver<526 brand=quadro,driver>=525,driver<526 brand=quadrortx,driver>=525,driver<526 brand=titan,driver>=525,driver<526 brand=titanrtx,driver>=525,driver<526 brand=tesla,driver>=535,driver<536 brand=unknown,driver>=535,driver<536 brand=nvidia,driver>=535,driver<536 brand=nvidiartx,driver>=535,driver<536 brand=geforce,driver>=535,driver<536 brand=geforcertx,driver>=535,driver<536 brand=quadro,driver>=535,driver<536 brand=quadrortx,driver>=535,driver<536 brand=titan,driver>=535,driver<536 brand=titanrtx,driver>=535,driver<536
ENV NV_CUDA_CUDART_VERSION=12.4.127-1
ENV NV_CUDA_COMPAT_PACKAGE=cuda-compat-12-4
ARG TARGETARCH
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
RUN |1 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg2 curl ca-certificates && curl -fsSLO https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/${NVARCH}/cuda-keyring_1.1-1_all.deb && dpkg -i cuda-keyring_1.1-1_all.deb && apt-get purge --autoremove -y curl && rm -rf /var/lib/apt/lists/* # buildkit
ENV CUDA_VERSION=12.4.1
RUN |1 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends cuda-cudart-12-4=${NV_CUDA_CUDART_VERSION} ${NV_CUDA_COMPAT_PACKAGE} && rm -rf /var/lib/apt/lists/* # buildkit
RUN |1 TARGETARCH=amd64 /bin/sh -c echo "/usr/local/nvidia/lib" >> /etc/ld.so.conf.d/nvidia.conf && echo "/usr/local/nvidia/lib64" >> /etc/ld.so.conf.d/nvidia.conf # buildkit
ENV PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64
COPY NGC-DL-CONTAINER-LICENSE / # buildkit
ENV NVIDIA_VISIBLE_DEVICES=all
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility
ENV NV_CUDA_LIB_VERSION=12.4.1-1
ENV NV_NVTX_VERSION=12.4.127-1
ENV NV_LIBNPP_VERSION=12.2.5.30-1
ENV NV_LIBNPP_PACKAGE=libnpp-12-4=12.2.5.30-1
ENV NV_LIBCUSPARSE_VERSION=12.3.1.170-1
ENV NV_LIBCUBLAS_PACKAGE_NAME=libcublas-12-4
ENV NV_LIBCUBLAS_VERSION=12.4.5.8-1
ENV NV_LIBCUBLAS_PACKAGE=libcublas-12-4=12.4.5.8-1
ENV NV_LIBNCCL_PACKAGE_NAME=libnccl2
ENV NV_LIBNCCL_PACKAGE_VERSION=2.21.5-1
ENV NCCL_VERSION=2.21.5-1
ENV NV_LIBNCCL_PACKAGE=libnccl2=2.21.5-1+cuda12.4
ARG TARGETARCH
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
RUN |1 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends cuda-libraries-12-4=${NV_CUDA_LIB_VERSION} ${NV_LIBNPP_PACKAGE} cuda-nvtx-12-4=${NV_NVTX_VERSION} libcusparse-12-4=${NV_LIBCUSPARSE_VERSION} ${NV_LIBCUBLAS_PACKAGE} ${NV_LIBNCCL_PACKAGE} && rm -rf /var/lib/apt/lists/* # buildkit
RUN |1 TARGETARCH=amd64 /bin/sh -c apt-mark hold ${NV_LIBCUBLAS_PACKAGE_NAME} ${NV_LIBNCCL_PACKAGE_NAME} # buildkit
COPY entrypoint.d/ /opt/nvidia/entrypoint.d/ # buildkit
COPY nvidia_entrypoint.sh /opt/nvidia/ # buildkit
ENV NVIDIA_PRODUCT_NAME=CUDA
ENTRYPOINT ["/opt/nvidia/nvidia_entrypoint.sh"]
ENV DEBIAN_FRONTEND=noninteractive
ENV PYTHONUNBUFFERED=1
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends python3 python3-pip python3-venv git ffmpeg && rm -rf /var/lib/apt/lists/* # buildkit
WORKDIR /app
COPY requirements.txt . # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir -r requirements.txt # buildkit
RUN /bin/sh -c python3 -c "import os, torchvision; p = os.path.join(os.path.dirname(torchvision.__file__), 'transforms', 'functional_tensor.py'); open(p, 'w').write('from torchvision.transforms.functional import rgb_to_grayscale\n')" # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir --no-deps ace-step@git+https://github.com/ace-step/ACE-Step.git && pip3 install --no-cache-dir datasets librosa loguru pypinyin pytorch_lightning py3langid hangul-romanize num2words spacy cutlet "fugashi[unidic-lite]" click peft # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir basicsr==1.4.2 realesrgan==0.3.0 controlnet_aux==0.0.9 opencv-python-headless==4.10.0.84 kornia facexlib gfpgan simple-lama-inpainting ultralytics # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir --no-deps codeformer-perceptor # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir "timm>=1.0.0" # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir omegaconf einops trimesh pygltflib PyMCubes rembg[gpu] && git clone --depth 1 https://github.com/VAST-AI-Research/TripoSR.git /opt/TripoSR && ln -s /opt/TripoSR/tsr /usr/local/lib/python3.10/dist-packages/tsr # buildkit
RUN /bin/sh -c mkdir -p /usr/local/lib/python3.10/dist-packages/torchmcubes # buildkit
COPY torchmcubes_shim.py /usr/local/lib/python3.10/dist-packages/torchmcubes/__init__.py # buildkit
RUN /bin/sh -c git clone --depth 1 https://github.com/piddnad/DDColor.git /tmp/ddcolor && SITE=$(find /usr/local/lib -type d -name basicsr | head -1) && cp -r /tmp/ddcolor/ddcolor "$SITE/../ddcolor" && cp -r /tmp/ddcolor/basicsr/archs/ddcolor_arch_utils "$SITE/archs/ddcolor_arch_utils" && DIST=$(python3 -c "import site; print(site.getsitepackages()[0])") && [ -d "$DIST/ddcolor" ] || cp -r /tmp/ddcolor/ddcolor "$DIST/ddcolor" && rm -rf /tmp/ddcolor # buildkit
RUN /bin/sh -c python3 -m venv --system-site-packages /app/f5tts-venv && /app/f5tts-venv/bin/pip install --no-cache-dir "numpy==1.26.4" "f5-tts" && /app/f5tts-venv/bin/pip check || true # buildkit
RUN /bin/sh -c git clone --depth 1 https://github.com/OpenTalker/SadTalker.git /app/SadTalker # buildkit
RUN /bin/sh -c pip3 install --no-cache-dir face-alignment pydub yacs # buildkit
RUN /bin/sh -c git clone --depth 1 https://github.com/Rudrabha/Wav2Lip.git /app/Wav2Lip # buildkit
RUN /bin/sh -c pip3 freeze | grep -iE "^(torch|torchvision|torchaudio)==" > /tmp/torch-pin.txt && pip3 install --no-cache-dir -c /tmp/torch-pin.txt face-detection && rm /tmp/torch-pin.txt # buildkit
RUN /bin/sh -c mkdir -p /app/Wav2Lip/checkpoints && python3 -c "from huggingface_hub import hf_hub_download; hf_hub_download('Nekochu/Wav2Lip', 'wav2lip_gan.pth', local_dir='/app/Wav2Lip/checkpoints')" # buildkit
ENV SADTALKER_DIR=/app/SadTalker
ENV WAV2LIP_DIR=/app/Wav2Lip
ENV WAV2LIP_CHECKPOINT=/app/Wav2Lip/checkpoints/wav2lip_gan.pth
RUN /bin/sh -c mkdir -p /app/jobs /app/civitai # buildkit

Labels

Key Value
build.hash 5c86a979444e7ae354237cdce69bc864d185d956e19a523fb80b6e886f4f9610
maintainer NVIDIA CORPORATION <cudatools@nvidia.com>
org.opencontainers.image.ref.name ubuntu
org.opencontainers.image.version 22.04
Details
Container
2026-02-10 02:16:08 +00:00
121
OCI / Docker
Versions (32) View all
runner 2026-02-12
delegator 2026-02-12
task-voice-cache 2026-02-10
task-voice 2026-02-10