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

View File

@ -1,3 +1,3 @@
export const version: string = '2023.8.1';
export const version: string = '2023.8.2';
export const versionTag: string = '';
export const showWelcome: boolean = true;
export const showWelcome: boolean = false;