From 123cf13145067c63e6c2116579ff8c5761008b3f Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 8 Jun 2023 10:53:33 +0100 Subject: [PATCH] chore: copy across `.npmrc` to docker build (#2152) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 172e08d9..dee00724 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN apk add git --no-cache # Prepare build deps ( ignore postinstall scripts for now ) COPY package.json ./ +COPY .npmrc ./ COPY pnpm-lock.yaml ./ COPY patches ./patches RUN pnpm i --frozen-lockfile --ignore-scripts