Updated syntax for docker and CI files

This commit is contained in:
2025-12-10 10:15:19 +11:00
parent a9485a4d0a
commit cdafc4bd79
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
FROM node:22-bookworm-slim
WORKDIR "/app"
COPY package*.json /app
RUN npm install --production
RUN npm install --omit=dev
COPY . /app
EXPOSE 3100
USER node