From caefd5d5252f3601fd088d7c0a2b8e1fcc1379c0 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Fri, 19 Jun 2026 15:30:03 +0200 Subject: [PATCH] fix: include tgz files in docker build context for local package installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bec952c36..864d14446 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ENV SKIP_RUNTIME_ENV_VALIDATION=true ENV CI=true # Copy lockfile and manifest for dependency installation caching -COPY pnpm-lock.yaml package.json .npmrc* ./ +COPY pnpm-lock.yaml package.json .npmrc* *.tgz ./ COPY patches* ./patches/ ARG NPM_DOMAIN=git.infra.mintel.me