mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Use COPY instead of ADD for files and folders in Dockerfile
Reference: - https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#add-or-copy
This commit is contained in:
parent
28595ed1cf
commit
720e262c68
|
@ -22,7 +22,7 @@ MAINTAINER Marko Viitanen <fador@iki.fi>
|
|||
# List of needed packages to be able to build kvazaar with autotools
|
||||
ENV REQUIRED_PACKAGES automake autoconf libtool m4 build-essential git yasm pkgconf
|
||||
|
||||
ADD . kvazaar
|
||||
COPY . kvazaar
|
||||
# Run all the commands in one RUN so we don't have any extra history
|
||||
# data in the image.
|
||||
RUN apt-get update \
|
||||
|
|
Loading…
Reference in a new issue