From b90955a1e202e9c85aeedbdc3a9af7a3d69ffe3b Mon Sep 17 00:00:00 2001 From: Artem Vdovin Date: Sun, 28 Sep 2025 10:32:44 +0500 Subject: [PATCH] fix: copy gitops-engine deps to test container Signed-off-by: Artem Vdovin --- test/container/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/container/Dockerfile b/test/container/Dockerfile index 0f471ac8339c4..162a9b92a5e73 100644 --- a/test/container/Dockerfile +++ b/test/container/Dockerfile @@ -55,6 +55,8 @@ ENV GOPATH=/go # Install build and test dependencies COPY hack/install.sh hack/tool-versions.sh go.* ./ COPY hack/installers installers +RUN mkdir -p gitops-engine +COPY gitops-engine/go.* ./gitops-engine RUN ./install.sh helm && \ ./install.sh kustomize && \