From f0f5f59389175137ed0ad078659aa697bd38277d Mon Sep 17 00:00:00 2001 From: Rex White <rexwhite@redhat.com> Date: Tue, 15 Oct 2024 16:41:44 -0400 Subject: [PATCH] RHINENG-13680: Add .cleanmodules file to Docker image --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index f11c9e4..0a32f02 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -22,7 +22,7 @@ ENV HOME=$APP_ROOT FROM base AS packages COPY ./test ./test -COPY package.json package-lock.json knexfile.js ./ +COPY package.json package-lock.json .cleanmodules knexfile.js ./ #----------------------- test -----------------------