From bf1b4df69fbf80cff18068eecabc608088103eea Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Fri, 22 Dec 2023 17:38:36 +0100 Subject: [PATCH] Dockerfile: revert --production --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eabc21ce..29d25e5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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.