From 8fe34f543ee36561c1ebbb99c3d4defca9812bef Mon Sep 17 00:00:00 2001 From: OlegIvaniv Date: Tue, 14 Mar 2023 18:46:41 +0100 Subject: [PATCH] ci: Copy jest.config.js to the Docker container on deployment (no-changelog) (#5689) ci: Copy `jest.config.js` to the Docker container on deployment (no-changelog) --- docker/images/n8n-custom/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/images/n8n-custom/Dockerfile b/docker/images/n8n-custom/Dockerfile index 76ee6ded63..f6cc050711 100644 --- a/docker/images/n8n-custom/Dockerfile +++ b/docker/images/n8n-custom/Dockerfile @@ -3,7 +3,7 @@ ARG NODE_VERSION=16 # 1. Create an image to build n8n FROM n8nio/base:${NODE_VERSION} as builder -COPY turbo.json package.json .npmrc pnpm-lock.yaml pnpm-workspace.yaml tsconfig.json ./ +COPY turbo.json package.json .npmrc pnpm-lock.yaml pnpm-workspace.yaml jest.config.js tsconfig.json ./ COPY scripts ./scripts COPY packages ./packages COPY patches ./patches