From 7c9ba68a0a415d1a810e81890271d58576e1d078 Mon Sep 17 00:00:00 2001 From: stCarolas Date: Sun, 16 Jun 2024 13:34:36 +0300 Subject: [PATCH] add npmrc --- .npmrc | 2 ++ Dockerfile | 1 + 2 files changed, 3 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..3f692f8 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +legacy-peer-deps=true +@opendonationassistant:registry=https://npm.pkg.github.com diff --git a/Dockerfile b/Dockerfile index f497a2b..1a23dc2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ COPY package.json package.json COPY tsconfig.json tsconfig.json COPY .env .env COPY .env.production .env.production +COPY .npmrc .npmrc COPY public/ public COPY src/ src