use copy instead of add for docker

This commit is contained in:
Michel Promonet 2019-01-20 17:45:45 +00:00
parent 3511bbfbad
commit b35df2aaf5

View File

@ -2,9 +2,9 @@ FROM debian
LABEL maintainer michel.promonet@free.fr
WORKDIR /v4l2rtspserver
ADD . /v4l2rtspserver
COPY . /v4l2rtspserver
RUN apt-get update && apt-get install -y --no-install-recommends g++ autoconf automake libtool xz-utils cmake liblog4cpp5-dev libx264-dev libjpeg-dev v4l2loopback-dkms pkg-config git wget
RUN apt-get update && apt-get install -y --no-install-recommends g++ autoconf automake libtool xz-utils cmake liblog4cpp5-dev pkg-config git wget
RUN cmake . && make \
&& apt-get clean