Skip to content

Commit

Permalink
-v
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Sep 3, 2023
1 parent 1d7240c commit 403bad7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions cpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ RUN \
libxrender1

RUN \
# Install OpenCV
# Download OpenCV
wget https://github.com/opencv/opencv/archive/${OPENCV_VERSION}.zip -O opencv.zip --progress=bar:force:noscroll --no-check-certificate && \
unzip -q opencv.zip && \
mv /opencv-${OPENCV_VERSION} /opencv && \
Expand Down Expand Up @@ -144,7 +144,7 @@ RUN \
..

RUN \
# Build, Test and Install
# Build the package
cd /opencv/build && \
make -j$(nproc)

Expand All @@ -155,11 +155,13 @@ FROM base
COPY --from=builder /opencv/build /tmp/opencv/build

RUN \
# install the build package
cd /tmp/opencv/build && \
make install && \
ldconfig && \
ldconfig -v

# Call default command.
RUN \
# Call default command.
ffmpeg -version && \
#ldd `which ffmpeg` && \
python --version && \
Expand Down

0 comments on commit 403bad7

Please sign in to comment.