update frontend building

This commit is contained in:
Matthias Hochmeister
2026-02-26 15:17:16 +01:00
parent ac7572213c
commit 8a7ceccb2e

View File

@@ -9,8 +9,8 @@ WORKDIR /app
# Copy package files for dependency installation
COPY package*.json .npmrc ./
# Install dependencies
RUN npm ci --include=dev
# Install dependencies (NODE_ENV must not be production so devDependencies are installed)
RUN NODE_ENV=development npm ci
# Copy source code
COPY . .