You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ColossalAI/examples/images/diffusion/docker/Dockerfile

35 lines
1.1 KiB

FROM hpcaitech/pytorch-cuda:1.12.0-11.3.0
# install torch
# RUN conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch
RUN apt-get update
RUN apt-get install ffmpeg libsm6 libxext6 -y
# install apex
RUN git clone https://github.com/NVIDIA/apex && \
cd apex && \
pip install -v --disable-pip-version-check --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" --global-option="--fast_layer_norm" ./
# install colossalai
# RUN git clone https://github.com/hpcaitech/ColossalAI.git \
# && cd ./ColossalAI \
# && pip install -v --no-cache-dir .
RUN pip install colossalai
# install titans
RUN pip install --no-cache-dir titans
RUN git clone https://github.com/hpcaitech/ColossalAI.git && \
cd ./ColossalAI/examples/images/diffusion && \
pip install -r requirements.txt && \
pip install --no-cache-dir transformers==4.19.2 diffusers invisible-watermark
# install tensornvme
# RUN conda install cmake && \
# git clone https://github.com/hpcaitech/TensorNVMe.git && \
# cd TensorNVMe && \
# pip install -r requirements.txt && \
# pip install -v --no-cache-dir .