add oui install on dockerfile

This commit is contained in:
2025-03-29 17:19:10 +01:00
parent 0e153db2c4
commit 47efadd6d6

View File

@@ -14,6 +14,7 @@ COPY package*.json ./
# Install app dependencies using npm ci for faster, reliable builds
# --only=production installs only production dependencies
RUN npm ci --only=production
RUN npm i oui
# Stage 2: Production Image
FROM node:18-alpine