From a1a8bd8f8a9040f2b1cd54912bdf6284647bd2df Mon Sep 17 00:00:00 2001 From: tetuaoro <65575727+tetuaoro@users.noreply.github.com> Date: Wed, 31 Jul 2024 10:39:34 +0200 Subject: [PATCH] Dockerfile: try reduce build time (23mins a) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4788e9b7..e90910b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apk add --no-cache \ # Copy Web UI COPY src /app WORKDIR /app -RUN npm ci --build-from-source --omit=dev &&\ +RUN npm ci --build-from-source=sqlite3 --omit=dev &&\ mv node_modules /node_modules # Copy build result to a new image.