Make testhelper as a standalone module to install as dependency into kubernetes-secrets-injector

This commit is contained in:
Volodymyr Zotov
2025-09-17 10:45:50 -05:00
parent 0f56cab693
commit a390354100
6 changed files with 184 additions and 7 deletions

View File

@@ -8,6 +8,9 @@ WORKDIR /workspace
COPY go.mod go.mod
COPY go.sum go.sum
# Copy the testhelper module (needed for replace directive)
COPY pkg/testhelper/ pkg/testhelper/
# Download dependencies
RUN go mod download