Skip to content

Commit

Permalink
Update Dockerfile (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwlacewe authored Apr 17, 2023
1 parent 0943081 commit 9249408
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,12 @@ RUN git clone --branch v3.21.2 https://github.com/Kitware/CMake.git && \


# VDMS
RUN git clone https://github.com/IntelLabs/vdms.git && cd vdms && \
WORKDIR /vdms
RUN git clone https://github.com/IntelLabs/vdms.git /vdms && cd /vdms && \
git checkout develop && git submodule update --init --recursive && \
mkdir build && cd build && cmake .. && make ${BUILD_THREADS} && \
cp /vdms/config-vdms.json /vdms/build/ && \
echo '#!/bin/bash' > /start.sh && echo 'cd /vdms/build' >> /start.sh && \
echo './vdms' >> /start.sh && chmod 755 /start.sh

CMD ["/start.sh"]
CMD ["/start.sh"]

0 comments on commit 9249408

Please sign in to comment.