unidisc / Dockerfile
aswerdlow's picture
update
44f54d6
# Base image with CUDA 12.6.3 and cuDNN
FROM nvidia/cuda:12.6.3-cudnn-devel-ubuntu22.04
# Set environment variables
ARG DEBIAN_FRONTEND=noninteractive
ENV PYTHONUNBUFFERED=1 \
SYSTEM=spaces \
AM_I_IN_A_DOCKER_CONTAINER=Yes \
PYTHONPATH=/home/appuser/app \
HF_HOME=/home/appuser/.cache \
TORCH_HOME=/home/appuser/.cache \
TMP_DIR=/home/appuser/tmp \
TRANSFORMERS_CACHE=/home/appuser/.cache/transformers \
NVIDIA_VISIBLE_DEVICES=all \
NVIDIA_DRIVER_CAPABILITIES=compute,utility
# Install system dependencies and set Python 3.10 as default
RUN apt-get update && apt-get install --no-install-recommends -y \
build-essential \
python3.10 \
python3.10-distutils \
python3-pip \
ffmpeg \
libsm6 \
libxext6 \
libgl1 \
git \
wget \
procps \
git-lfs \
openssh-client \
&& ln -sf /usr/bin/python3.10 /usr/bin/python \
&& ln -sf /usr/bin/pip3 /usr/bin/pip \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Install `uv`
RUN pip install --upgrade pip \
&& pip install uv
# Create a non-root user
RUN useradd -m -u 1000 appuser
RUN echo "lsf" > test.txt
RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
RUN git clone -b docker_wip --recurse-submodules https://github.com/alexanderswerdlow/unidisc.git /home/appuser/app
WORKDIR /home/appuser/app
RUN --mount=type=ssh uv sync --no-group dev
RUN --mount=type=ssh uv sync --frozen --no-cache \
&& chown -R appuser:appuser /home/appuser/app/.venv \
&& rm -rf /root/.cache /home/appuser/.cache
# Ensure non-root user has write access to cache and tmp directories
RUN mkdir -p /home/appuser/.cache/transformers /home/appuser/tmp /home/appuser/.cache \
&& chown -R appuser:appuser /home/appuser/.cache /home/appuser/tmp/ /home/appuser/app/
RUN chmod -R 777 /tmp
RUN mkdir -p ./ckpts/unidisc_interleaved
RUN HF_HUB_ENABLE_HF_TRANSFER=1 uvx --with hf_transfer --from huggingface_hub huggingface-cli download aswerdlow/unidisc_interleaved --local-dir ./ckpts/unidisc_interleaved --revision 2b344ca856bd108b52a2d022a3463dace131249f
RUN ln -s ckpts/unidisc_interleaved/vq_ds16_t2i.pt ckpts/vq_ds16_t2i.pt
RUN chown -h appuser:appuser ckpts/vq_ds16_t2i.pt
# Switch to non-root user
USER appuser
# Expose port for Gradio
EXPOSE 5003
# Command to run the application
CMD ["bash", "demo/demo.sh"]
# DOCKER_BUILDKIT=1 docker build --ssh default --network=host -t unidisc .
# docker run --gpus all --network=host -it -p 5003:5003 unidisc