Unverified Commit 3f135e46 authored by user4543's avatar user4543 Committed by GitHub
Browse files

Dockerfile - Add support to run sb command inside docker image (#356)

**Description**
Add support to run sb command inside docker image - install missing dependency.
parent e08b6d3a
......@@ -123,4 +123,5 @@ RUN make -j ${NUM_MAKE_JOBS} -C third_party cuda
ADD . .
RUN python3 -m pip install .[nvidia,torch,ort] && \
make cppbuild
make cppbuild && \
make postinstall
......@@ -117,4 +117,5 @@ RUN mv /root/.local/bin/* /opt/conda/bin/ && \
ADD . .
RUN python3 -m pip install .[torch,ort] && \
make cppbuild
make cppbuild && \
make postinstall
......@@ -112,4 +112,5 @@ RUN ROCM_VERSION=rocm-4.2.0 make -j -C third_party rocm
ADD . .
RUN python3 -m pip install .[torch,ort] && \
make cppbuild
make cppbuild && \
make postinstall
......@@ -115,4 +115,5 @@ RUN ROCM_VERSION=rocm-5.0.0 make -j ${NUM_MAKE_JOBS} -C third_party rocm
ADD . .
RUN python3 -m pip install .[torch,ort] && \
make cppbuild
make cppbuild && \
make postinstall
......@@ -115,4 +115,5 @@ RUN ROCM_VERSION=rocm-5.0.1 make -j ${NUM_MAKE_JOBS} -C third_party rocm
ADD . .
RUN python3 -m pip install .[torch,ort] && \
make cppbuild
make cppbuild && \
make postinstall
......@@ -138,4 +138,5 @@ RUN ROCM_VERSION=release/rocm-rel-5.1 make -j ${NUM_MAKE_JOBS} -C third_party ro
ADD . .
RUN python3 -m pip install .[torch,ort] && \
make cppbuild
make cppbuild && \
make postinstall
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