"...en/git@developer.sourcefind.cn:OpenDAS/colossalai.git" did not exist on "d449525acfe6f0ebf9e94d3c37f262868ed3cf1e"
Unverified Commit eb952ea8 authored by 栾鹏's avatar 栾鹏 Committed by GitHub
Browse files

Update Dockerfile (#4499)

fix dockerfile build
parent cbac7822
...@@ -18,7 +18,7 @@ RUN apt-get update && \ ...@@ -18,7 +18,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
# install torch # install torch
RUN conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch RUN conda install -y pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch
# install ninja # install ninja
RUN apt-get update && \ RUN apt-get update && \
...@@ -43,8 +43,9 @@ RUN git clone -b ${VERSION} https://github.com/hpcaitech/ColossalAI.git \ ...@@ -43,8 +43,9 @@ RUN git clone -b ${VERSION} https://github.com/hpcaitech/ColossalAI.git \
RUN pip install --no-cache-dir titans RUN pip install --no-cache-dir titans
# install tensornvme # install tensornvme
RUN conda install cmake && \ RUN conda install -y cmake && \
git clone https://github.com/hpcaitech/TensorNVMe.git && \ git clone https://github.com/hpcaitech/TensorNVMe.git && \
cd TensorNVMe && \ cd TensorNVMe && \
apt update -y && apt install -y libaio-dev && \
pip install -r requirements.txt && \ pip install -r requirements.txt && \
pip install -v --no-cache-dir . pip install -v --no-cache-dir .
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment