Dockerfile: revert --production

This commit is contained in:
Philip H 2023-12-22 17:38:36 +01:00 committed by GitHub
parent 0bf439c018
commit bf1b4df69f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ FROM docker.io/library/node:18-alpine AS build_node_modules
# Copy Web UI
COPY src/ /app/
WORKDIR /app
RUN npm ci --production
RUN npm ci
# Copy build result to a new image.
# This saves a lot of disk space.