From 1ae239f7b822f4ef2d57ca2c7792713696508b10 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 15 Oct 2021 13:26:57 +0200 Subject: [PATCH] Fix build.Dockerfile --- hack/build.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/build.Dockerfile b/hack/build.Dockerfile index 9346b9b..be2f642 100644 --- a/hack/build.Dockerfile +++ b/hack/build.Dockerfile @@ -17,7 +17,7 @@ COPY --from=deps /vendor / FROM deps AS vendor-validate RUN --mount=type=bind,target=.,rw \ - git add -A && cp -rf /out/* .; \ + git add -A && cp -rf /vendor/* .; \ if [ -n "$(git status --porcelain -- yarn.lock)" ]; then \ echo >&2 'ERROR: Vendor result differs. Please vendor your package with "docker buildx bake vendor-update"'; \ git status --porcelain -- yarn.lock; \