new features, bookstack

This commit is contained in:
Matthias Hochmeister
2026-03-03 22:07:42 +01:00
parent 926f79b576
commit 32473f8329
2 changed files with 4 additions and 4 deletions

View File

@@ -1 +1 @@
registry=https://npm.apple.com/
registry=https://registry.npmjs.org/

View File

@@ -6,13 +6,13 @@ FROM node:20-alpine AS builder
# Set working directory
WORKDIR /app
# Copy package files for dependency installation
COPY package*.json .npmrc ./
# Copy package files for dependency installation (no lock file so npm resolves fresh from registry)
COPY package.json .npmrc ./
# Install dependencies (NODE_ENV must not be production so devDependencies are installed)
ENV NODE_ENV=development
ENV PATH="/app/node_modules/.bin:$PATH"
RUN npm ci --registry https://npm.apple.com
RUN npm install --include=dev
# Copy source code
COPY . .