Spaces:
Build error
Build error
| # Start from a clean NVIDIA CUDA base image. | |
| # Using 12.4.0-devel-ubuntu22.04 to align with the CUDA version specified in your cosmos-predict1.yaml. | |
| FROM nvidia/cuda:12.4.0-devel-ubuntu22.04 | |
| # Set environment variables for non-interactive installations to prevent prompts during apt-get. | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| # Define the base directory for Conda installation. | |
| ENV CONDA_DIR=/opt/conda | |
| # Add Conda's binary directory to the system's PATH. | |
| ENV PATH=$CONDA_DIR/bin:$PATH | |
| # Set the working directory inside the container. All subsequent commands will run from here. | |
| WORKDIR /app | |
| # Install essential system dependencies required for Miniconda and general build processes. | |
| # This includes wget for downloading, git for cloning (if needed), build-essential for compiling, | |
| # and libgl1-mesa-glx for graphics-related libraries often used by ML frameworks. | |
| # NEW: Added libglib2.0-0 for cv2 dependency | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| wget \ | |
| git \ | |
| build-essential \ | |
| libgl1-mesa-glx \ | |
| libglib2.0-0 \ | |
| # Clean up apt cache to reduce image size | |
| && rm -rf /var/lib/apt/lists/* | |
| # Install Miniconda | |
| RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh && \ | |
| /bin/bash miniconda.sh -b -p $CONDA_DIR && \ | |
| rm miniconda.sh && \ | |
| conda clean --all --yes && \ | |
| conda config --set auto_activate_base false && \ | |
| conda config --add channels conda-forge | |
| # Accept Conda Terms of Service for default channels. | |
| # We use '. ' (dot space) instead of 'source' as /bin/sh is the default shell. | |
| RUN . $CONDA_DIR/etc/profile.d/conda.sh && \ | |
| conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \ | |
| conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r | |
| # Copy all local project files into the container's working directory (/app). | |
| # This includes your cosmos-predict1.yaml, gui/requirements.txt, start.sh, etc. | |
| COPY . /app | |
| # Create the Conda environment named 'cosmos-predict1' using the provided YAML file. | |
| # This step will install all specified Python and pip dependencies (excluding PyTorch/TorchVision). | |
| RUN conda env create -f cosmos-predict1.yaml | |
| # Set the default Conda environment to be activated. | |
| ENV CONDA_DEFAULT_ENV=cosmos-predict1 | |
| # Add the newly created Conda environment's binary directory to the PATH. | |
| # This ensures that executables (like python, pip, uvicorn) from this environment are found. | |
| ENV PATH=$CONDA_DIR/envs/cosmos-predict1/bin:$PATH | |
| # Install PyTorch and TorchVision via pip with specific CUDA index. | |
| RUN . $CONDA_DIR/etc/profile.d/conda.sh && \ | |
| conda activate cosmos-predict1 && \ | |
| pip install --no-cache-dir \ | |
| torch==2.3.1 \ | |
| torchvision==0.18.1 \ | |
| torchaudio==2.3.1 \ | |
| --index-url https://download.pytorch.org/whl/cu121 | |
| # --- Verification Steps --- | |
| RUN echo "Verifying Python and Conda installations..." | |
| RUN python --version | |
| RUN conda env list | |
| RUN echo "Verifying PyTorch and CUDA availability..." | |
| # Use a heredoc for multi-line Python code | |
| RUN conda run -n cosmos-predict1 python <<EOF | |
| import torch | |
| print('PyTorch Version: ' + torch.__version__) | |
| print('CUDA Available: ' + str(torch.cuda.is_available())) | |
| if torch.cuda.is_available(): | |
| print('CUDA Device Name: ' + torch.cuda.get_device_name(0)) | |
| else: | |
| print('CUDA Device Name: N/A') | |
| EOF | |
| # Add the fallback echo if the python command fails | |
| RUN [ $? -eq 0 ] || echo "PyTorch verification failed. Check dependencies in cosmos-predict1.yaml." | |
| # --- End Verification Steps --- | |
| # Make the start.sh script executable. | |
| RUN chmod +x /app/start.sh | |
| # Set the default command to run when the container starts. | |
| # This will execute your start.sh script. | |
| CMD ["/app/start.sh"] |