chore: add .npmrc copy step in Dockerfile

This commit is contained in:
kastov
2025-07-18 17:30:39 +03:00
parent 6b6f521472
commit acefd04413

View File

@@ -11,6 +11,7 @@ FROM node:${NODE_VERSION}-alpine as builder
WORKDIR /usr/src/app
COPY .npmrc ./
COPY package*.json ./
RUN npm install