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 files for dependency installation
COPY package*.json .npmrc ./ COPY package*.json .npmrc ./
# Install dependencies # Install dependencies (NODE_ENV must not be production so devDependencies are installed)
RUN npm ci --include=dev RUN NODE_ENV=development npm ci
# Copy source code # Copy source code
COPY . . COPY . .