Adjust version and ensure .npmrc is included in Docker build step

This commit is contained in:
Fred Boniface
2023-08-07 11:04:39 +01:00
parent 10d221007e
commit 2ab35c042e
2 changed files with 3 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ FROM node:latest AS build
WORKDIR /app
COPY package.json /
COPY package-lock.json /
COPY .npmrc /
RUN npm install
COPY . ./
RUN npm run build