From 57094a8fee1672be3cfdbfa4996a954d682f4182 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Thu, 23 Jul 2026 01:34:12 +0200 Subject: [PATCH] fix: make quartz.lock.json optional in Dockerfile With npm specifiers, quartz.lock.json may not exist. The glob pattern makes the COPY conditional. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cb2a889..cb30aaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /usr/src/app COPY package.json . COPY package-lock.json* . COPY quartz/ ./quartz/ -COPY quartz.lock.json . +COPY quartz.lock.json* . RUN npm ci; npx quartz plugin install FROM node:22-slim