From e54d1aa73eab6fb662597992761b2905c523e381 Mon Sep 17 00:00:00 2001 From: Owen Date: Tue, 15 Sep 2026 10:59:47 -0400 Subject: [PATCH] Include .npmrc --- Dockerfile | 2 +- Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ecd2daa28..0bf3a59fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/* -COPY package*.json ./ +COPY package*.json .npmrc ./ FROM base AS builder-dev diff --git a/Dockerfile.dev b/Dockerfile.dev index 1372fe33a..cfcfb278a 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -4,7 +4,7 @@ WORKDIR /app RUN apk add --no-cache python3 make g++ -COPY package*.json ./ +COPY package*.json .npmrc ./ # Install dependencies RUN npm ci