Version bump and minor changes

Incremented version to 1.0.9
Updated dockerfile to run build to generate static webpages
Fixed missing parameter REQUIRE_LOGIN from config payload
This commit is contained in:
Thegan Govender
2023-11-28 18:48:06 +02:00
parent 1ef57d0717
commit e146260572
4 changed files with 8 additions and 4 deletions

View File

@@ -5,10 +5,13 @@ WORKDIR /app
COPY package*.json ./
RUN npm cache clean --force
RUN npm install
RUN npm ci
COPY ./ ./
# Build the application
RUN npm run build
# Stage 2: Create the production image
FROM node:slim