From 4c84ca0059bc68953140953158b6bc56b067d81c Mon Sep 17 00:00:00 2001 From: Blake Pettersson Date: Thu, 2 Mar 2023 01:03:36 +0100 Subject: [PATCH] fix: exclude test/fixtures from .dockerignore (#12640) * fix: exclude test/fixtures from .dockerignore #12620 introduced the ignore of the `test/` directory, which had the unintended effect of breaking `make start`. To amend that, add an override for `test/fixture` in order to unbreak `test/container/dockerfile`. Signed-off-by: Blake Pettersson * fix: also exclude `test/containers` Signed-off-by: Blake Pettersson --------- Signed-off-by: Blake Pettersson Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index 73e8d5bf73f4e..81e5902bc6147 100644 --- a/.dockerignore +++ b/.dockerignore @@ -18,6 +18,8 @@ hack/ docs/ examples/ .github/ +!test/fixture +!test/container !hack/installers !hack/gpg-wrapper.sh !hack/git-verify-wrapper.sh