Files
Grounded-SAM-2/Dockerfile

38 lines
1.2 KiB
Docker
Raw Permalink Normal View History

2024-08-09 22:23:01 +02:00
FROM pytorch/pytorch:2.3.1-cuda12.1-cudnn8-devel
# Arguments to build Docker Image using CUDA
ARG USE_CUDA=0
ARG TORCH_ARCH="7.0;7.5;8.0;8.6"
2024-09-06 14:44:58 +02:00
ENV AM_I_DOCKER=True
ENV BUILD_WITH_CUDA="${USE_CUDA}"
2024-08-09 22:23:01 +02:00
ENV TORCH_CUDA_ARCH_LIST="${TORCH_ARCH}"
2024-09-06 14:44:58 +02:00
ENV CUDA_HOME=/usr/local/cuda-12.1/
2024-08-09 22:23:01 +02:00
# Ensure CUDA is correctly set up
2024-09-06 14:44:58 +02:00
ENV PATH=/usr/local/cuda-12.1/bin:${PATH}
ENV LD_LIBRARY_PATH=/usr/local/cuda-12.1/lib64:${LD_LIBRARY_PATH}
2024-08-09 22:23:01 +02:00
# Install required packages and specific gcc/g++
RUN apt-get update && apt-get install --no-install-recommends wget ffmpeg=7:* \
libsm6=2:* libxext6=2:* git=1:* nano vim=2:* ninja-build gcc-10 g++-10 -y \
&& apt-get clean && apt-get autoremove && rm -rf /var/lib/apt/lists/*
ENV CC=gcc-10
ENV CXX=g++-10
RUN mkdir -p /home/appuser/Grounded-SAM-2
COPY . /home/appuser/Grounded-SAM-2/
WORKDIR /home/appuser/Grounded-SAM-2
# Install essential Python packages
RUN python -m pip install --upgrade pip "setuptools>=62.3.0,<75.9" wheel numpy \
2024-09-06 14:44:58 +02:00
opencv-python transformers supervision pycocotools addict yapf timm
2024-08-09 22:23:01 +02:00
# Install segment_anything package in editable mode
RUN python -m pip install -e .
2024-08-14 02:07:00 +03:00
# Install grounding dino
RUN python -m pip install --no-build-isolation -e grounding_dino