It is possible that the build fails because files used in Dockerfile are missing in the Docker build context.
Background
docker_vcstool offers a way to specify the path to Dockerfile (and some other specific files for now, not list of arbitrary files), by copying them into a temporary Dockerfile build context.
This process doesn't check what files are used in the given Dockerfile.
It is the user's responsibility to define Dockerfile to be passed to docker_vcs properly. That said it'd be great if the tool can check prior to the build whether certain files used in Dockerfile are missing or not.
Issue
It is possible that the build fails because files used in
Dockerfile
are missing in the Docker build context.Background
docker_vcstool
offers a way to specify the path to Dockerfile (and some other specific files for now, not list of arbitrary files), by copying them into a temporary Dockerfile build context.