Updated syntax for docker and CI files

This commit is contained in:
2025-12-10 10:11:32 +11:00
parent 91add2dd12
commit 27dcad3bcd
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ networks:
FROM node:22-bookworm-slim
WORKDIR "/app"
COPY package*.json ./
RUN npm install --production
RUN npm install --omit=dev
COPY . /app
EXPOSE ${appPort}
USER node