use copy instead of add for docker

pull/125/head
Michel Promonet 5 years ago
parent 3511bbfbad
commit b35df2aaf5

@ -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

Loading…
Cancel
Save