From efffccfa3fd513df0cf131abd52489334c8ce03a Mon Sep 17 00:00:00 2001 From: Scott Little Date: Fri, 24 Sep 2021 15:22:43 -0400 Subject: [PATCH] update .dockerignore for debian build containers Debian build containers can't be built outside of minikube. The 'docker build' fails with an error message such as ... COPY failed: stat /home/docker/data/tmp/docker-builder/stx/toCOPY... The issue is the .dockerignore file which ignores everything by default unless explicitly permitted. we must add stx/toCOPY to the permitted list. Story: 2008846 Task: 43004 Signed-off-by: Scott Little Change-Id: Iea3490bfbb60959dc02cc0788b8740e5b13f8e6d --- .dockerignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.dockerignore b/.dockerignore index bc53ff58..14fbe211 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,3 +2,4 @@ !toCOPY !centos-mirror-tools/yum.repos.d/* !centos-mirror-tools/rpm-gpg-keys/* +!stx/toCOPY