forked from AlexeyAB/darknet
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from opendatacam/development
Merge v2.0.0-beta2
- Loading branch information
Showing
2 changed files
with
33 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,41 @@ | ||
FROM opendatacam/base-desktop-nvidia-cuda-opencv-gstreamer:1.0 | ||
FROM nvcr.io/nvidia/cuda:11.4.3-cudnn8-devel-ubuntu20.04 as builder | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
LABEL maintainer="OpenDataCam <[email protected]>" | ||
|
||
# Update NVIDIA Signing key | ||
# See also https://forums.developer.nvidia.com/t/gpg-error-http-developer-download-nvidia-com-compute-cuda-repos-ubuntu1804-x86-64/212904/3 | ||
RUN apt-key del 7fa2af80 && \ | ||
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/3bf863cc.pub | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Install commonly used dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y jq wget | ||
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ | ||
apt-get install -y nodejs | ||
|
||
# Start Darknet Install | ||
RUN git clone --depth 1 -b odc https://github.com/opendatacam/darknet /var/local/darknet | ||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends --no-install-suggests -y gnupg2 ca-certificates \ | ||
git build-essential libopencv-dev wget pkg-config \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Build Darknet | ||
RUN git clone --depth 1 https://github.com/opendatacam/darknet /var/local/darknet | ||
WORKDIR /var/local/darknet | ||
|
||
RUN sed -i -e s/GPU=0/GPU=1/ Makefile; | ||
RUN sed -i -e s/CUDNN=0/CUDNN=1/ Makefile; | ||
RUN sed -i -e s/OPENCV=0/OPENCV=1/ Makefile; | ||
RUN make -j | ||
|
||
# -------------------------------------------------------------------------------------------------- | ||
|
||
FROM nvcr.io/nvidia/cuda:11.4.3-cudnn8-runtime-ubuntu20.04 | ||
|
||
LABEL maintainer="OpenDataCam <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends --no-install-suggests -y libopencv-highgui4.2 \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& apt-get clean | ||
|
||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends --no-install-suggests -y curl \ | ||
&& curl -sL https://deb.nodesource.com/setup_12.x | bash - \ | ||
&& apt-get install --no-install-recommends --no-install-suggests -y nodejs \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& apt-get clean | ||
|
||
RUN make | ||
COPY --from=builder /var/local/darknet /var/local/darknet |